Skip to content

Commit

Permalink
Add posibility to filter tests that require manifester
Browse files Browse the repository at this point in the history
  • Loading branch information
dosas committed Mar 6, 2024
1 parent cc8227d commit dc52895
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions pytest_plugins/markers.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def pytest_configure(config):
"no_containers: Disable container hosts from being used in favor of VMs",
"include_capsule: For satellite-maintain tests to run on Satellite and Capsule both",
"capsule_only: For satellite-maintain tests to run only on Capsules",
"manifester: Tests that require manifester",
]
markers.extend(module_markers())
for marker in markers:
Expand Down
2 changes: 2 additions & 0 deletions tests/foreman/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ def pytest_collection_modifyitems(session, items, config):
deselected_items = []

for item in items:
if any("manifest" in f for f in getattr(item, "fixturenames", ())):
item.add_marker("manifester")
# 1. Deselect tests marked with @pytest.mark.deselect
# WONTFIX BZs makes test to be dynamically marked as deselect.
deselect = item.get_closest_marker('deselect')
Expand Down

0 comments on commit dc52895

Please sign in to comment.