diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-12-18 14:33:50 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-12-18 14:34:13 +0100 |
commit | 641272d41107f61d996ed71b6f5905e4287dda5a (patch) | |
tree | 51775fdadaf5bb730a2d0896363aeb006c625919 /test/system/helpers.bash | |
parent | adcb3a7a609ba756f8b9de17521f0e3dce3b778e (diff) | |
download | podman-641272d41107f61d996ed71b6f5905e4287dda5a.tar.gz podman-641272d41107f61d996ed71b6f5905e4287dda5a.tar.bz2 podman-641272d41107f61d996ed71b6f5905e4287dda5a.zip |
system tests: set PODMAN_TIMEOUT to 120
The new Ubuntu 20.04 VMs seem very slow and fail reproducibly in a build
test (i.e, "wordir, cmd, env, label"). Bumping up the time out to 120
seconds will help get the CI green.
See github.com/containers/podman/pull/8747.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'test/system/helpers.bash')
-rw-r--r-- | test/system/helpers.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/helpers.bash b/test/system/helpers.bash index a4b89ec99..0572c6866 100644 --- a/test/system/helpers.bash +++ b/test/system/helpers.bash @@ -14,7 +14,7 @@ PODMAN_TEST_IMAGE_FQN="$PODMAN_TEST_IMAGE_REGISTRY/$PODMAN_TEST_IMAGE_USER/$PODM IMAGE=$PODMAN_TEST_IMAGE_FQN # Default timeout for a podman command. -PODMAN_TIMEOUT=${PODMAN_TIMEOUT:-60} +PODMAN_TIMEOUT=${PODMAN_TIMEOUT:-120} # Prompt to display when logging podman commands; distinguish root/rootless _LOG_PROMPT='$' |