test/system: Try to prevent local 'skopeo copy' from timing out - #1826
Merged
debarshiray merged 1 commit intoJul 28, 2026
Conversation
|
Caution The consumer version of Gemini Code Assist on GitHub has been sunset. All code review activity has officially ceased. |
The 60 second timeouts might not be quite enough for local 'skopeo copy'
because they sometimes fail with:
not ok 187 run: Smoke test with 'exit 2'
# tags: commands-options
# (from function `assert_success' in file
test/system/libs/bats-assert/src/assert.bash, line 114,
# from function `pull_distro_image' in file
test/system/libs/helpers.bash, line 391,
# from function `pull_default_image' in file
test/system/libs/helpers.bash, line 402,
# from function `create_default_container' in file
test/system/libs/helpers.bash, line 470,
# in test file test/system/104-run.bats, line 806)
# `create_default_container' failed
# ~ /home/zuul-worker/src/github.com/containers/toolbox
# Failed to load image registry.fedoraproject.org/fedora-toolbox:45
from cache
/var/tmp/bats-run-yokdp3/suite/image-cache/fedora-toolbox-45
#
# -- command failed --
# status : 1
# output (3 lines):
# Getting image source signatures
# Copying blob sha256:8e0fe36f464ab46d2ce4ea3a1f2779c3921598ebf824e7
# time="2026-07-28T00:08:31Z" level=fatal msg="copying config:
context deadline exceeded"
# --
#
So, double the timeouts to 120 seconds.
containers#1822
containers#1826
Signed-off-by: Rolv Apneseth <rolv.apneseth@gmail.com>
debarshiray
force-pushed
the
wip/rishi/test-system-libs-helpers-skopeo-copy-timeout-120s
branch
from
July 28, 2026 13:01
bce73d5 to
773768a
Compare
debarshiray
deleted the
wip/rishi/test-system-libs-helpers-skopeo-copy-timeout-120s
branch
July 28, 2026 22:33
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The 60 second timeouts might not be quite enough for local
skopeo copybecause they sometimes fail with:So, double the timeouts to 120 seconds.
#1822