Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix failing ISS tests #14315

Merged
merged 1 commit into from
Mar 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading