├── .azure-pipelines.yml ├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierrc.json ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── img ├── icon.png ├── run-button.png └── screenshot.png ├── package.json ├── requirements.txt ├── resources └── python │ ├── __init__.py │ └── vscode_python_test_adapter │ ├── __init__.py │ └── pytest │ ├── __init__.py │ └── discovery_output_plugin.py ├── src ├── configuration │ ├── configurationFactory.ts │ ├── placeholderAwareWorkspaceConfiguration.ts │ ├── pythonExtensionAwareWorkspaceConfiguration.ts │ ├── vscodeWorkspaceConfiguration.ts │ └── workspaceConfiguration.ts ├── environmentVariablesLoader.ts ├── idGenerator.ts ├── logging │ ├── defaultLogger.ts │ ├── logOutputChannel.ts │ ├── logger.ts │ └── outputChannels │ │ ├── noopOutputChannel.ts │ │ └── vscodeOutputChannel.ts ├── loggingOutputCollector.ts ├── main.ts ├── processRunner.ts ├── pytest │ ├── pytestJunitTestStatesParser.ts │ ├── pytestTestCollectionParser.ts │ └── pytestTestRunner.ts ├── pythonRunner.ts ├── pythonTestAdapter.ts ├── testRunner.ts ├── testplan │ ├── testplanJSONBasedTestLoader.ts │ ├── testplanJunitTestStatesParser.ts │ ├── testplanPatternsBasedTestLoader.ts │ ├── testplanTestLoader.ts │ └── testplanTestRunner.ts ├── unittest │ ├── unittestScripts.ts │ ├── unittestSuitParser.ts │ └── unittestTestRunner.ts └── utilities │ ├── collections.ts │ ├── fs.ts │ ├── strings.ts │ └── tests.ts ├── test ├── mocha-runner.ts ├── test_samples │ ├── .env │ ├── .gitignore │ ├── pytest │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── settings.json │ │ ├── pytest.ini │ │ ├── pytest_runner.bat │ │ ├── pytest_runner.sh │ │ ├── src │ │ │ └── arithmetic.py │ │ └── test │ │ │ ├── describe_test.py │ │ │ ├── env_variables_test.py │ │ │ ├── fixture_test.py │ │ │ ├── generate_test.py │ │ │ ├── import_error_tests │ │ │ ├── invalid_syntax_test.py │ │ │ └── non_existing_module_test.py │ │ │ ├── inner_fixture_test.py │ │ │ ├── inner_tests │ │ │ └── add_test.py │ │ │ ├── other_tests │ │ │ ├── __init__.py │ │ │ └── add_test.py │ │ │ ├── string_test.py │ │ │ ├── submodule │ │ │ ├── pytest.ini │ │ │ └── test_simple.py │ │ │ ├── subprocess_test.py │ │ │ └── test_minimal.tavern.yaml │ ├── pytest_test_cancellation │ │ ├── .vscode │ │ │ └── settings.json │ │ └── test_sleep.py │ ├── samples-workspace.code-workspace │ ├── testplan │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── basic │ │ │ └── test_plan.py │ │ ├── test_plan.py │ │ └── test_plan_parts.py │ ├── testplan_test_cancellation │ │ ├── .vscode │ │ │ └── settings.json │ │ └── test_plan.py │ ├── unittest │ │ ├── .env │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── basic_tests │ │ │ ├── __init__.py │ │ │ ├── initialization_output_tests │ │ │ │ ├── __init__.py │ │ │ │ └── test_with_initialization_output.py │ │ │ └── test_add.py │ │ ├── invalid_tests │ │ │ ├── __init__.py │ │ │ ├── test_invalid_syntax_failed.py │ │ │ └── test_invalid_test_id.py │ │ ├── other_tests │ │ │ ├── __init__.py │ │ │ ├── test_add.py │ │ │ └── test_string.py │ │ ├── setup_tests │ │ │ ├── __init__.py │ │ │ └── test_with_setup.py │ │ ├── test_env_variables.py │ │ ├── test_invalid_import_failed.py │ │ └── unittest_without_init │ │ │ └── test_without_init.py │ ├── unittest_discovery_errors │ │ └── import_error_tests │ │ │ ├── __init__.py │ │ │ ├── load_tests_error │ │ │ └── __init__.py │ │ │ └── test_non_existing_module_failed.py │ ├── unittest_test_cancellation │ │ ├── .vscode │ │ │ └── settings.json │ │ └── test_sleep.py │ └── workspaces │ │ ├── bad_env_file │ │ ├── .env │ │ └── .vscode │ │ │ └── settings.json │ │ ├── empty_configuration │ │ └── .vscode │ │ │ └── settings.json │ │ ├── not_existent_env_file │ │ └── .vscode │ │ │ └── settings.json │ │ ├── python_extension_configured_pytest │ │ └── .vscode │ │ │ └── settings.json │ │ ├── python_extension_configured_testplan │ │ └── .vscode │ │ │ └── settings.json │ │ ├── python_extension_configured_unittest │ │ └── .vscode │ │ │ └── settings.json │ │ ├── python_extension_configured_with_placeholders │ │ └── .vscode │ │ │ └── settings.json │ │ ├── test_framework_overridden_and_default │ │ └── .vscode │ │ │ └── settings.json │ │ ├── test_framework_overridden_pytest │ │ └── .vscode │ │ │ └── settings.json │ │ └── test_framework_overridden_unittest │ │ └── .vscode │ │ └── settings.json ├── tests │ ├── environmentParsing.test.ts │ ├── idGenerator.test.ts │ ├── placeholderAwareWorkspaceConfiguration.test.ts │ ├── pytestArguments.test.ts │ ├── pytestGeneral.test.ts │ ├── pytestScript.test.ts │ ├── pythonTestAdapter.test.ts │ ├── testCancellation.test.ts │ ├── testplanGeneral.test.ts │ ├── unittestGeneral.test.ts │ ├── unittestSuitParser.test.ts │ ├── utilities.test.ts │ ├── utilities.ts │ └── vscodeWorkspaceConfiguration.test.ts ├── tslint.json ├── utils │ ├── helpers.ts │ ├── pytest.ts │ └── testConfiguration.ts └── vscode-runner.ts ├── tox.ini ├── tsconfig.json └── tslint.json /.azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/.azure-pipelines.yml -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/README.md -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/img/icon.png -------------------------------------------------------------------------------- /img/run-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/img/run-button.png -------------------------------------------------------------------------------- /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/img/screenshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/python/vscode_python_test_adapter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/python/vscode_python_test_adapter/pytest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/python/vscode_python_test_adapter/pytest/discovery_output_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/resources/python/vscode_python_test_adapter/pytest/discovery_output_plugin.py -------------------------------------------------------------------------------- /src/configuration/configurationFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/configuration/configurationFactory.ts -------------------------------------------------------------------------------- /src/configuration/placeholderAwareWorkspaceConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/configuration/placeholderAwareWorkspaceConfiguration.ts -------------------------------------------------------------------------------- /src/configuration/pythonExtensionAwareWorkspaceConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/configuration/pythonExtensionAwareWorkspaceConfiguration.ts -------------------------------------------------------------------------------- /src/configuration/vscodeWorkspaceConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/configuration/vscodeWorkspaceConfiguration.ts -------------------------------------------------------------------------------- /src/configuration/workspaceConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/configuration/workspaceConfiguration.ts -------------------------------------------------------------------------------- /src/environmentVariablesLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/environmentVariablesLoader.ts -------------------------------------------------------------------------------- /src/idGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/idGenerator.ts -------------------------------------------------------------------------------- /src/logging/defaultLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/logging/defaultLogger.ts -------------------------------------------------------------------------------- /src/logging/logOutputChannel.ts: -------------------------------------------------------------------------------- 1 | export interface ILogOutputChannel { 2 | write(message: string): void; 3 | } 4 | -------------------------------------------------------------------------------- /src/logging/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/logging/logger.ts -------------------------------------------------------------------------------- /src/logging/outputChannels/noopOutputChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/logging/outputChannels/noopOutputChannel.ts -------------------------------------------------------------------------------- /src/logging/outputChannels/vscodeOutputChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/logging/outputChannels/vscodeOutputChannel.ts -------------------------------------------------------------------------------- /src/loggingOutputCollector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/loggingOutputCollector.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/processRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/processRunner.ts -------------------------------------------------------------------------------- /src/pytest/pytestJunitTestStatesParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/pytest/pytestJunitTestStatesParser.ts -------------------------------------------------------------------------------- /src/pytest/pytestTestCollectionParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/pytest/pytestTestCollectionParser.ts -------------------------------------------------------------------------------- /src/pytest/pytestTestRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/pytest/pytestTestRunner.ts -------------------------------------------------------------------------------- /src/pythonRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/pythonRunner.ts -------------------------------------------------------------------------------- /src/pythonTestAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/pythonTestAdapter.ts -------------------------------------------------------------------------------- /src/testRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/testRunner.ts -------------------------------------------------------------------------------- /src/testplan/testplanJSONBasedTestLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/testplan/testplanJSONBasedTestLoader.ts -------------------------------------------------------------------------------- /src/testplan/testplanJunitTestStatesParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/testplan/testplanJunitTestStatesParser.ts -------------------------------------------------------------------------------- /src/testplan/testplanPatternsBasedTestLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/testplan/testplanPatternsBasedTestLoader.ts -------------------------------------------------------------------------------- /src/testplan/testplanTestLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/testplan/testplanTestLoader.ts -------------------------------------------------------------------------------- /src/testplan/testplanTestRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/testplan/testplanTestRunner.ts -------------------------------------------------------------------------------- /src/unittest/unittestScripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/unittest/unittestScripts.ts -------------------------------------------------------------------------------- /src/unittest/unittestSuitParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/unittest/unittestSuitParser.ts -------------------------------------------------------------------------------- /src/unittest/unittestTestRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/unittest/unittestTestRunner.ts -------------------------------------------------------------------------------- /src/utilities/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/utilities/collections.ts -------------------------------------------------------------------------------- /src/utilities/fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/utilities/fs.ts -------------------------------------------------------------------------------- /src/utilities/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/utilities/strings.ts -------------------------------------------------------------------------------- /src/utilities/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/src/utilities/tests.ts -------------------------------------------------------------------------------- /test/mocha-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/mocha-runner.ts -------------------------------------------------------------------------------- /test/test_samples/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/.env -------------------------------------------------------------------------------- /test/test_samples/.gitignore: -------------------------------------------------------------------------------- 1 | !.env 2 | -------------------------------------------------------------------------------- /test/test_samples/pytest/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/.vscode/launch.json -------------------------------------------------------------------------------- /test/test_samples/pytest/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/.vscode/settings.json -------------------------------------------------------------------------------- /test/test_samples/pytest/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/pytest.ini -------------------------------------------------------------------------------- /test/test_samples/pytest/pytest_runner.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/pytest_runner.bat -------------------------------------------------------------------------------- /test/test_samples/pytest/pytest_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/pytest_runner.sh -------------------------------------------------------------------------------- /test/test_samples/pytest/src/arithmetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/src/arithmetic.py -------------------------------------------------------------------------------- /test/test_samples/pytest/test/describe_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/test/describe_test.py -------------------------------------------------------------------------------- /test/test_samples/pytest/test/env_variables_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/test/env_variables_test.py -------------------------------------------------------------------------------- /test/test_samples/pytest/test/fixture_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/test/fixture_test.py -------------------------------------------------------------------------------- /test/test_samples/pytest/test/generate_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/test/generate_test.py -------------------------------------------------------------------------------- /test/test_samples/pytest/test/import_error_tests/invalid_syntax_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/test/import_error_tests/invalid_syntax_test.py -------------------------------------------------------------------------------- /test/test_samples/pytest/test/import_error_tests/non_existing_module_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/test/import_error_tests/non_existing_module_test.py -------------------------------------------------------------------------------- /test/test_samples/pytest/test/inner_fixture_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/test/inner_fixture_test.py -------------------------------------------------------------------------------- /test/test_samples/pytest/test/inner_tests/add_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/test/inner_tests/add_test.py -------------------------------------------------------------------------------- /test/test_samples/pytest/test/other_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_samples/pytest/test/other_tests/add_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/test/other_tests/add_test.py -------------------------------------------------------------------------------- /test/test_samples/pytest/test/string_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/test/string_test.py -------------------------------------------------------------------------------- /test/test_samples/pytest/test/submodule/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/test/submodule/pytest.ini -------------------------------------------------------------------------------- /test/test_samples/pytest/test/submodule/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/test/submodule/test_simple.py -------------------------------------------------------------------------------- /test/test_samples/pytest/test/subprocess_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/test/subprocess_test.py -------------------------------------------------------------------------------- /test/test_samples/pytest/test/test_minimal.tavern.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest/test/test_minimal.tavern.yaml -------------------------------------------------------------------------------- /test/test_samples/pytest_test_cancellation/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest_test_cancellation/.vscode/settings.json -------------------------------------------------------------------------------- /test/test_samples/pytest_test_cancellation/test_sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/pytest_test_cancellation/test_sleep.py -------------------------------------------------------------------------------- /test/test_samples/samples-workspace.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/samples-workspace.code-workspace -------------------------------------------------------------------------------- /test/test_samples/testplan/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/testplan/.vscode/settings.json -------------------------------------------------------------------------------- /test/test_samples/testplan/basic/test_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/testplan/basic/test_plan.py -------------------------------------------------------------------------------- /test/test_samples/testplan/test_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/testplan/test_plan.py -------------------------------------------------------------------------------- /test/test_samples/testplan/test_plan_parts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/testplan/test_plan_parts.py -------------------------------------------------------------------------------- /test/test_samples/testplan_test_cancellation/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/testplan_test_cancellation/.vscode/settings.json -------------------------------------------------------------------------------- /test/test_samples/testplan_test_cancellation/test_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/testplan_test_cancellation/test_plan.py -------------------------------------------------------------------------------- /test/test_samples/unittest/.env: -------------------------------------------------------------------------------- 1 | SOME_FILE_VARIABLE=HelloFromEnvFile 2 | -------------------------------------------------------------------------------- /test/test_samples/unittest/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/unittest/.vscode/settings.json -------------------------------------------------------------------------------- /test/test_samples/unittest/basic_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_samples/unittest/basic_tests/initialization_output_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_samples/unittest/basic_tests/initialization_output_tests/test_with_initialization_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/unittest/basic_tests/initialization_output_tests/test_with_initialization_output.py -------------------------------------------------------------------------------- /test/test_samples/unittest/basic_tests/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/unittest/basic_tests/test_add.py -------------------------------------------------------------------------------- /test/test_samples/unittest/invalid_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_samples/unittest/invalid_tests/test_invalid_syntax_failed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/unittest/invalid_tests/test_invalid_syntax_failed.py -------------------------------------------------------------------------------- /test/test_samples/unittest/invalid_tests/test_invalid_test_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/unittest/invalid_tests/test_invalid_test_id.py -------------------------------------------------------------------------------- /test/test_samples/unittest/other_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_samples/unittest/other_tests/test_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/unittest/other_tests/test_add.py -------------------------------------------------------------------------------- /test/test_samples/unittest/other_tests/test_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/unittest/other_tests/test_string.py -------------------------------------------------------------------------------- /test/test_samples/unittest/setup_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_samples/unittest/setup_tests/test_with_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/unittest/setup_tests/test_with_setup.py -------------------------------------------------------------------------------- /test/test_samples/unittest/test_env_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/unittest/test_env_variables.py -------------------------------------------------------------------------------- /test/test_samples/unittest/test_invalid_import_failed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/unittest/test_invalid_import_failed.py -------------------------------------------------------------------------------- /test/test_samples/unittest/unittest_without_init/test_without_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/unittest/unittest_without_init/test_without_init.py -------------------------------------------------------------------------------- /test/test_samples/unittest_discovery_errors/import_error_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_samples/unittest_discovery_errors/import_error_tests/load_tests_error/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/unittest_discovery_errors/import_error_tests/load_tests_error/__init__.py -------------------------------------------------------------------------------- /test/test_samples/unittest_discovery_errors/import_error_tests/test_non_existing_module_failed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/unittest_discovery_errors/import_error_tests/test_non_existing_module_failed.py -------------------------------------------------------------------------------- /test/test_samples/unittest_test_cancellation/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/unittest_test_cancellation/.vscode/settings.json -------------------------------------------------------------------------------- /test/test_samples/unittest_test_cancellation/test_sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/unittest_test_cancellation/test_sleep.py -------------------------------------------------------------------------------- /test/test_samples/workspaces/bad_env_file/.env: -------------------------------------------------------------------------------- 1 | some text that 2 | should not be parsed as 3 | environment=123 4 | -------------------------------------------------------------------------------- /test/test_samples/workspaces/bad_env_file/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/workspaces/bad_env_file/.vscode/settings.json -------------------------------------------------------------------------------- /test/test_samples/workspaces/empty_configuration/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/test_samples/workspaces/not_existent_env_file/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/workspaces/not_existent_env_file/.vscode/settings.json -------------------------------------------------------------------------------- /test/test_samples/workspaces/python_extension_configured_pytest/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/workspaces/python_extension_configured_pytest/.vscode/settings.json -------------------------------------------------------------------------------- /test/test_samples/workspaces/python_extension_configured_testplan/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/workspaces/python_extension_configured_testplan/.vscode/settings.json -------------------------------------------------------------------------------- /test/test_samples/workspaces/python_extension_configured_unittest/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/workspaces/python_extension_configured_unittest/.vscode/settings.json -------------------------------------------------------------------------------- /test/test_samples/workspaces/python_extension_configured_with_placeholders/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/workspaces/python_extension_configured_with_placeholders/.vscode/settings.json -------------------------------------------------------------------------------- /test/test_samples/workspaces/test_framework_overridden_and_default/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/workspaces/test_framework_overridden_and_default/.vscode/settings.json -------------------------------------------------------------------------------- /test/test_samples/workspaces/test_framework_overridden_pytest/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/workspaces/test_framework_overridden_pytest/.vscode/settings.json -------------------------------------------------------------------------------- /test/test_samples/workspaces/test_framework_overridden_unittest/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/test_samples/workspaces/test_framework_overridden_unittest/.vscode/settings.json -------------------------------------------------------------------------------- /test/tests/environmentParsing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/tests/environmentParsing.test.ts -------------------------------------------------------------------------------- /test/tests/idGenerator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/tests/idGenerator.test.ts -------------------------------------------------------------------------------- /test/tests/placeholderAwareWorkspaceConfiguration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/tests/placeholderAwareWorkspaceConfiguration.test.ts -------------------------------------------------------------------------------- /test/tests/pytestArguments.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/tests/pytestArguments.test.ts -------------------------------------------------------------------------------- /test/tests/pytestGeneral.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/tests/pytestGeneral.test.ts -------------------------------------------------------------------------------- /test/tests/pytestScript.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/tests/pytestScript.test.ts -------------------------------------------------------------------------------- /test/tests/pythonTestAdapter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/tests/pythonTestAdapter.test.ts -------------------------------------------------------------------------------- /test/tests/testCancellation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/tests/testCancellation.test.ts -------------------------------------------------------------------------------- /test/tests/testplanGeneral.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/tests/testplanGeneral.test.ts -------------------------------------------------------------------------------- /test/tests/unittestGeneral.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/tests/unittestGeneral.test.ts -------------------------------------------------------------------------------- /test/tests/unittestSuitParser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/tests/unittestSuitParser.test.ts -------------------------------------------------------------------------------- /test/tests/utilities.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/tests/utilities.test.ts -------------------------------------------------------------------------------- /test/tests/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/tests/utilities.ts -------------------------------------------------------------------------------- /test/tests/vscodeWorkspaceConfiguration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/tests/vscodeWorkspaceConfiguration.test.ts -------------------------------------------------------------------------------- /test/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/tslint.json -------------------------------------------------------------------------------- /test/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/utils/helpers.ts -------------------------------------------------------------------------------- /test/utils/pytest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/utils/pytest.ts -------------------------------------------------------------------------------- /test/utils/testConfiguration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/utils/testConfiguration.ts -------------------------------------------------------------------------------- /test/vscode-runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/test/vscode-runner.ts -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/tox.ini -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kondratyev-nv/vscode-python-test-adapter/HEAD/tslint.json --------------------------------------------------------------------------------