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 f9bc296 commit 217504bCopy full SHA for 217504b
tests/conftest.py
@@ -172,7 +172,7 @@ def pytest_collection_modifyitems(config, items) -> None:
172
if ("-nap" or "-nap-v5") not in config.getoption("--image"):
173
appprotect = pytest.mark.skip(reason="Skip AppProtect test in non-AP image")
174
for item in items:
175
- if "appprotect" in item.keywords:
+ if ("appprotect" or "appprotect_waf_v5") in item.keywords:
176
item.add_marker(appprotect)
177
if "-dos" not in config.getoption("--image"):
178
dos = pytest.mark.skip(reason="Skip DOS test in non-DOS image")
0 commit comments