blob: 13dc709a11b48f5d81ff42eb2f47225d08652f82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
pytest_plugins = 'setuptools.tests.fixtures'
def pytest_addoption(parser):
parser.addoption(
"--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',
]
|