Commit 445d3847 authored by Jason R. Coombs's avatar Jason R. Coombs

Move ignores into conftest.py

parent 65699525
......@@ -6,3 +6,15 @@ def pytest_addoption(parser):
"--package_name", action="append", default=[],
help="list of package_name to pass to test functions",
)
collect_ignore = [
'release.py',
'setuptools/lib2to3_ex.py',
'tests/manual_test.py',
'tests/test_pypi.py',
'tests/shlib_test',
'scripts/upload-old-releases-as-zip.py',
'pavement.py',
'setuptools/tests/mod_with_constant.py',
]
[pytest]
addopts=--doctest-modules --ignore release.py --ignore setuptools/lib2to3_ex.py --ignore tests/manual_test.py --ignore tests/test_pypi.py --ignore tests/shlib_test --doctest-glob=pkg_resources/api_tests.txt --ignore scripts/upload-old-releases-as-zip.py --ignore pavement.py --ignore setuptools/tests/mod_with_constant.py -rsxX
addopts=--doctest-modules --doctest-glob=pkg_resources/api_tests.txt -rsxX
norecursedirs=dist build *.egg setuptools/extern pkg_resources/extern .*
flake8-ignore =
setuptools/site-patch.py F821
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment