Lines Matching +full:integration +full:- +full:tests
6 pytest_plugins = 'setuptools.tests.fixtures'
11 "--package_name", action="append", default=[],
15 "--integration", action="store_true", default=False,
16 help="run integration tests (only)"
21 config.addinivalue_line("markers", "integration: integration tests")
22 config.addinivalue_line("markers", "uses_network: tests may try to download files")
26 'tests/manual_test.py',
27 'setuptools/tests/mod_with_constant.py',
32 'pkg_resources/tests/data',
39 collect_ignore.append('docs/conf.py') # uses f-strings
45 running_integration_tests = request.config.getoption("--integration")
46 is_integration_test = request.node.get_closest_marker("integration")
48 pytest.skip("running integration tests only")
50 pytest.skip("skipping integration tests")