Skip to content

Commit

Permalink
remove user to prevent ForeignKeyViolation
Browse files Browse the repository at this point in the history
  • Loading branch information
amolpati30 committed Dec 16, 2024
1 parent ea1716d commit bac124b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/foreman/api/test_ansible.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


@pytest.fixture
def filtered_user(target_sat, module_org, module_location):
def filtered_user(request, target_sat, module_org, module_location):
"""
:steps:
1. Create a role with a host view filtered
Expand All @@ -48,6 +48,8 @@ def filtered_user(target_sat, module_org, module_location):
user = target_sat.api.User(
role=[role], password=password, location=[module_location], organization=[module_org]
).create()
if is_open('SAT-18656'):
yield request.addfinalizer(user.delete)

return user, password

Expand Down

0 comments on commit bac124b

Please sign in to comment.