Skip to content

Commit

Permalink
Fix container-to-capsule sync test (SatelliteQE#11262)
Browse files Browse the repository at this point in the history
It seems we need a little sleep when running on OSP.
This was already fixed in 6.12.z, but not in master.
  • Loading branch information
vsedmik authored and ColeHiggins2 committed Apr 14, 2023
1 parent 784b9e6 commit 2d17d48
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/foreman/api/test_capsulecontent.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"""
import re
from datetime import datetime
from time import sleep

import pytest
from nailgun import client
Expand Down Expand Up @@ -1002,6 +1003,8 @@ def test_positive_sync_container_repo_end_to_end(
id=function_lce.id, registry_unauthenticated_pull='true'
).update(['registry_unauthenticated_pull'])

sleep(20)

skopeo_cmd = 'skopeo --debug inspect docker://'
for path in repo_paths:
result = module_capsule_configured.execute(
Expand Down

0 comments on commit 2d17d48

Please sign in to comment.