diff --git a/.coveragerc b/.coveragerc deleted file mode 100644 index ca3311e2..00000000 --- a/.coveragerc +++ /dev/null @@ -1,13 +0,0 @@ -[run] -branch = True -source = src - -[report] -ignore_errors = True -exclude_lines = - if self.debug: - pragma: no cover - raise NotImplementedError - if __name__ == .__main__.: -omit = - src/ptvsd/_vendored/* diff --git a/.flake8.ci b/.flake8.ci deleted file mode 100644 index 77866045..00000000 --- a/.flake8.ci +++ /dev/null @@ -1,3 +0,0 @@ -[flake8] -format = junit-xml -output-file = .\linter-test.xml diff --git a/.travis.yml b/.travis.yml index 35f2e444..8459fe1e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,12 +27,3 @@ install: script: - tox - -# TODO: re-enable after https://github.com/Microsoft/ptvsd/issues/1033 -# after_success: -# - | -# if [[ $TRAVIS_PYTHON_VERSION != '2.7' ]]; then -# pushd src -# bash <(curl -s https://codecov.io/bash) -# popd -# fi diff --git a/ptvsd.code-workspace b/ptvsd.code-workspace index 56973b35..6a9c48d9 100644 --- a/ptvsd.code-workspace +++ b/ptvsd.code-workspace @@ -7,7 +7,5 @@ "settings": { "python.linting.enabled": true, "python.linting.pylintEnabled": false, - // "python.unitTest.pyTestEnabled": true, - // "python.unitTest.pyTestArgs": ["--no-cov"], } } diff --git a/setup.py b/setup.py index bab962a1..0b0bfa5d 100644 --- a/setup.py +++ b/setup.py @@ -61,17 +61,6 @@ if __name__ == '__main__': author_email='ptvshelp@microsoft.com', url='https://aka.ms/ptvs', python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', - setup_requires=['pytest_runner>=4.2'], - tests_require=[ - 'pytest>=3.8', - 'pytest-timeout>=1.3', - 'psutil>=5.4', - 'requests', - 'flask', - 'django', - 'pygments>=2.2', - 'colorama>=0.3', - ], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Programming Language :: Python :: 2.7', diff --git a/tox.ini b/tox.ini index 5f3557f3..80c7edc5 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,4 @@ envlist = py{27,34,35,36,37} [testenv] deps = -rtest_requirements.txt -setenv = - COVERAGE_FILE = .coverage.{envname} -commands = - pytest {posargs:-vv} +commands = pytest {posargs:-vv}