Commit 0a39f8e4 authored by Jason R. Coombs's avatar Jason R. Coombs

Only ignore collection on older Pythons

parent 992293d1
import sys
pytest_plugins = 'setuptools.tests.fixtures'
......@@ -9,9 +12,12 @@ def pytest_addoption(parser):
collect_ignore = [
'setuptools/lib2to3_ex.py',
'tests/manual_test.py',
'tests/test_pypi.py',
'pavement.py',
'setuptools/tests/mod_with_constant.py',
]
if sys.version_info < (3,):
collect_ignore.append('setuptools/lib2to3_ex.py')
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