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 8983f88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions 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,8 +48,9 @@ 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()

return user, password
if is_open('SAT-18656'):
request.addfinalizer(user.delete)
yield user, password


@pytest.mark.upgrade
Expand Down Expand Up @@ -296,7 +297,6 @@ def test_positive_read_facts_with_filter(
host.organization = module_org
host.location = module_location
host.update(['organization', 'location'])

# gather ansible facts by running ansible roles on the host
host.play_ansible_roles()
if is_open('SAT-18656'):
Expand Down

0 comments on commit 8983f88

Please sign in to comment.