From 616fca9ffd8ff8b4d3ab09ca10c6e799cda12932 Mon Sep 17 00:00:00 2001 From: Toshiki Sonoda Date: Tue, 8 Nov 2022 15:08:50 +0900 Subject: [PATCH] system tests: fix a system test in proxy environment When we are using a proxy, 'podman build - basic test' will be failed on remote. This test needs to add the '--http-proxy' option. Signed-off-by: Toshiki Sonoda --- test/system/070-build.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/system/070-build.bats b/test/system/070-build.bats index b392fd8e94..e2b8c274ac 100644 --- a/test/system/070-build.bats +++ b/test/system/070-build.bats @@ -20,7 +20,7 @@ RUN echo $rand_content > /$rand_filename EOF # The 'apk' command can take a long time to fetch files; bump timeout - PODMAN_TIMEOUT=240 run_podman build -t build_test --format=docker $tmpdir + PODMAN_TIMEOUT=240 run_podman build -t build_test --format=docker --http-proxy $tmpdir is "$output" ".*COMMIT" "COMMIT seen in log" run_podman run --rm build_test cat /$rand_filename