Skip to content

Commit

Permalink
[6.15.z] Add posibility to filter tests that require manifester (Sate…
Browse files Browse the repository at this point in the history
…lliteQE#14415)

Add posibility to filter tests that require manifester (SatelliteQE#14270)

(cherry picked from commit 0397a0d)

Co-authored-by: dosas <[email protected]>
  • Loading branch information
2 people authored and damoore044 committed Mar 18, 2024
1 parent 9aeb815 commit afc637b
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 afc637b

Please sign in to comment.