├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── .yarnrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── demo.gif ├── editor.png ├── icon.png └── screen.png ├── package.json ├── python-cli ├── .gitignore ├── poetry.lock ├── pyproject.toml ├── pyrightconfig.json ├── src │ └── deepcov │ │ ├── __init__.py │ │ ├── cli.py │ │ └── pytest_plugin.py └── tests │ ├── __init__.py │ ├── resources │ ├── out_of_cov_scope.py │ ├── pytest.ini │ └── src │ │ ├── __init__.py │ │ ├── lib.py │ │ └── test_lib.py │ ├── snapshots │ ├── __init__.py │ └── snap_test_cli.py │ ├── test_cli.py │ ├── test_pytest_plugin.py │ └── util.py ├── src ├── extension.ts └── test │ ├── runTest.ts │ └── suite │ ├── extension.test.ts │ └── index.ts ├── tsconfig.json ├── vsc-extension-quickstart.md └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/.vscodeignore -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | --ignore-engines true -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/README.md -------------------------------------------------------------------------------- /docs/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/docs/demo.gif -------------------------------------------------------------------------------- /docs/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/docs/editor.png -------------------------------------------------------------------------------- /docs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/docs/icon.png -------------------------------------------------------------------------------- /docs/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/docs/screen.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/package.json -------------------------------------------------------------------------------- /python-cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/python-cli/.gitignore -------------------------------------------------------------------------------- /python-cli/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/python-cli/poetry.lock -------------------------------------------------------------------------------- /python-cli/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/python-cli/pyproject.toml -------------------------------------------------------------------------------- /python-cli/pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/python-cli/pyrightconfig.json -------------------------------------------------------------------------------- /python-cli/src/deepcov/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-cli/src/deepcov/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/python-cli/src/deepcov/cli.py -------------------------------------------------------------------------------- /python-cli/src/deepcov/pytest_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/python-cli/src/deepcov/pytest_plugin.py -------------------------------------------------------------------------------- /python-cli/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-cli/tests/resources/out_of_cov_scope.py: -------------------------------------------------------------------------------- 1 | print(42) 2 | -------------------------------------------------------------------------------- /python-cli/tests/resources/pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | addopts = 3 | --cov=src 4 | -------------------------------------------------------------------------------- /python-cli/tests/resources/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-cli/tests/resources/src/lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/python-cli/tests/resources/src/lib.py -------------------------------------------------------------------------------- /python-cli/tests/resources/src/test_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/python-cli/tests/resources/src/test_lib.py -------------------------------------------------------------------------------- /python-cli/tests/snapshots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-cli/tests/snapshots/snap_test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/python-cli/tests/snapshots/snap_test_cli.py -------------------------------------------------------------------------------- /python-cli/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/python-cli/tests/test_cli.py -------------------------------------------------------------------------------- /python-cli/tests/test_pytest_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/python-cli/tests/test_pytest_plugin.py -------------------------------------------------------------------------------- /python-cli/tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/python-cli/tests/util.py -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/src/test/runTest.ts -------------------------------------------------------------------------------- /src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/treebeardtech/pytest-deepcov/HEAD/yarn.lock --------------------------------------------------------------------------------