Skip to content

Commit

Permalink
added the missing direcotry path for ui_session (SatelliteQE#13212)
Browse files Browse the repository at this point in the history
  • Loading branch information
omkarkhatavkar authored Nov 29, 2023
1 parent a9ffccd commit 2fa446e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/foreman/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,12 @@ def ui_session_record_property(request, record_property):
request: The pytest request object.
record_property: The value to set for the record_property attribute.
"""
test_directories = ['tests/foreman/destructive', 'tests/foreman/ui']
test_directories = [
'tests/foreman/destructive',
'tests/foreman/ui',
'tests/foreman/sanity',
'tests/foreman/virtwho',
]
test_file_path = request.node.fspath.strpath
if any(directory in test_file_path for directory in test_directories):
for fixture in request.node.fixturenames:
Expand Down

0 comments on commit 2fa446e

Please sign in to comment.