Skip to content

Commit

Permalink
Add filter for ldap related tests (SatelliteQE#14540)
Browse files Browse the repository at this point in the history
  • Loading branch information
dosas authored Apr 9, 2024
1 parent 0cf4cc6 commit 21580fc
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 @@ -25,6 +25,7 @@ def pytest_configure(config):
"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",
"ldap: Tests related to ldap authentication",
]
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 @@ -32,6 +32,8 @@ def pytest_collection_modifyitems(session, items, config):
for item in items:
if any("manifest" in f for f in getattr(item, "fixturenames", ())):
item.add_marker("manifester")
if any("ldap" in f for f in getattr(item, "fixturenames", ())):
item.add_marker("ldap")
# 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 21580fc

Please sign in to comment.