Skip to content

Commit

Permalink
[6.15.z] added the missing directory path for ui_session (#13213)
Browse files Browse the repository at this point in the history
added the missing direcotry path for ui_session (#13212)

(cherry picked from commit 2fa446e)

Co-authored-by: Omkar Khatavkar <[email protected]>
  • Loading branch information
Satellite-QE and omkarkhatavkar authored Nov 29, 2023
1 parent 503f5e5 commit 6b01a61
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 6b01a61

Please sign in to comment.