├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── cascade-coverage-pixel.py ├── cascade-coverage.py ├── cuv ├── README.rst ├── __init__.py ├── __main__.py ├── _version.py ├── analysis.py ├── cli.py ├── click_autodoc.py ├── diff.py ├── graph.py ├── less.py ├── source-code-pro.ttf ├── spark.py ├── util.py └── watch.py ├── docs ├── Makefile ├── README.rst ├── _static │ └── cuvner-logo.svg ├── conf.py ├── index.rst └── make.bat ├── histogram-coverage.py ├── historic-histogram.py ├── pyproject.toml ├── rtd-reqs.txt ├── screenshots ├── cuvner-diff-txtorcon.png ├── cuvner-graph-txtorcon.png ├── cuvner-lessopen-twisted.png ├── cuvner-next-txtorcon.png └── cuvner-spark-txtorcon.png ├── svg-histogram-coverage.py ├── svg-vert-coverage.py ├── terminal-coverage.py └── visual-coverage.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | PRIVATE* -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/README.rst -------------------------------------------------------------------------------- /cascade-coverage-pixel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/cascade-coverage-pixel.py -------------------------------------------------------------------------------- /cascade-coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/cascade-coverage.py -------------------------------------------------------------------------------- /cuv/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/cuv/README.rst -------------------------------------------------------------------------------- /cuv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/cuv/__init__.py -------------------------------------------------------------------------------- /cuv/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/cuv/__main__.py -------------------------------------------------------------------------------- /cuv/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "24.12.1" 2 | -------------------------------------------------------------------------------- /cuv/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/cuv/analysis.py -------------------------------------------------------------------------------- /cuv/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/cuv/cli.py -------------------------------------------------------------------------------- /cuv/click_autodoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/cuv/click_autodoc.py -------------------------------------------------------------------------------- /cuv/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/cuv/diff.py -------------------------------------------------------------------------------- /cuv/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/cuv/graph.py -------------------------------------------------------------------------------- /cuv/less.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/cuv/less.py -------------------------------------------------------------------------------- /cuv/source-code-pro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/cuv/source-code-pro.ttf -------------------------------------------------------------------------------- /cuv/spark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/cuv/spark.py -------------------------------------------------------------------------------- /cuv/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/cuv/util.py -------------------------------------------------------------------------------- /cuv/watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/cuv/watch.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- 1 | ../cuv/README.rst -------------------------------------------------------------------------------- /docs/_static/cuvner-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/docs/_static/cuvner-logo.svg -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/docs/make.bat -------------------------------------------------------------------------------- /histogram-coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/histogram-coverage.py -------------------------------------------------------------------------------- /historic-histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/historic-histogram.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rtd-reqs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/rtd-reqs.txt -------------------------------------------------------------------------------- /screenshots/cuvner-diff-txtorcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/screenshots/cuvner-diff-txtorcon.png -------------------------------------------------------------------------------- /screenshots/cuvner-graph-txtorcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/screenshots/cuvner-graph-txtorcon.png -------------------------------------------------------------------------------- /screenshots/cuvner-lessopen-twisted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/screenshots/cuvner-lessopen-twisted.png -------------------------------------------------------------------------------- /screenshots/cuvner-next-txtorcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/screenshots/cuvner-next-txtorcon.png -------------------------------------------------------------------------------- /screenshots/cuvner-spark-txtorcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/screenshots/cuvner-spark-txtorcon.png -------------------------------------------------------------------------------- /svg-histogram-coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/svg-histogram-coverage.py -------------------------------------------------------------------------------- /svg-vert-coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/svg-vert-coverage.py -------------------------------------------------------------------------------- /terminal-coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/terminal-coverage.py -------------------------------------------------------------------------------- /visual-coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meejah/cuvner/HEAD/visual-coverage.py --------------------------------------------------------------------------------