Skip to content

Commit

Permalink
Fix failing ISS tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vsedmik committed Mar 8, 2024
1 parent 063ac02 commit c243485
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/foreman/cli/test_satellitesync.py
Original file line number Diff line number Diff line change
Expand Up @@ -1235,6 +1235,14 @@ def test_negative_import_incomplete_archive(
{'organization-id': function_import_org_with_manifest.id, 'path': import_path}
)
assert '1 subtask(s) failed' in error.value.message
target_sat.wait_for_tasks(
search_query=(
'Actions::Katello::ContentView::Remove and '
f'organization_id = {function_import_org_with_manifest.id}'
),
max_tries=5,
poll_rate=10,
)

# Verify no content is imported and the import CV can be deleted
imported_cv = target_sat.cli.ContentView.info(
Expand Down Expand Up @@ -1577,6 +1585,7 @@ def test_positive_export_rerun_failed_import(
assert len(importing_cvv) == 1

@pytest.mark.tier3
@pytest.mark.skip_if_open("BZ:2262379")
def test_postive_export_import_ansible_collection_repo(
self,
target_sat,
Expand Down

0 comments on commit c243485

Please sign in to comment.