From caa16b66b4448d778a12a2d78df0a50e8c722d30 Mon Sep 17 00:00:00 2001 From: Anatoli Babenia Date: Wed, 4 Nov 2020 19:33:11 +0300 Subject: [PATCH] Use `wget` instead of `curl` to wait for container Because even Ubuntu 20.04 version of `curl` is outdated --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bb556c6..d3357e4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ before_install: - docker-compose ps script: - - curl --retry 3 --retry-all-errors http://localhost:8002 + - wget --timeout 3 --tries=5 --spider localhost:8002 2>&1 | grep -i http - docker-compose logs --no-color - docker logs chtsh - CHEATSH_TEST_STANDALONE=NO bash tests/run-tests.sh