We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1abc7cd commit 5a1b1e7Copy full SHA for 5a1b1e7
tests/integration/conftest.py
@@ -38,13 +38,9 @@ def pytest_configure(config):
38
39
40
def pytest_collection_modifyitems(items):
41
- # safer to refer to fixture fns instead of strings
42
- client_fixtures = [x.__name__ for x in [a, w, ucws, ucacct]]
+ # All tests defined in tests/integration are considered integration tests.
43
for item in items:
44
- current_fixtures = getattr(item, "fixturenames", ())
45
- for requires_client in client_fixtures:
46
- if requires_client in current_fixtures:
47
- item.add_marker("integration")
+ item.add_marker("integration")
48
49
50
@pytest.fixture(scope="session")
0 commit comments