From ff1a732ffd2adaa533e7d7def84fbb318c9eb3e3 Mon Sep 17 00:00:00 2001 From: Ansible Test Runner Date: Tue, 24 Jan 2017 14:08:24 -0800 Subject: [PATCH] Increase timeout for http server in uri test. --- test/integration/targets/uri/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/targets/uri/tasks/main.yml b/test/integration/targets/uri/tasks/main.yml index c282ddfc76..f9fd00bec2 100644 --- a/test/integration/targets/uri/tasks/main.yml +++ b/test/integration/targets/uri/tasks/main.yml @@ -43,7 +43,7 @@ - name: start SimpleHTTPServer shell: cd {{ files_dir }} && {{ ansible_python.executable }} {{ output_dir}}/testserver.py {{ http_port }} - async: 60 # this test set takes ~15 seconds to run + async: 120 # this test set can take ~1m to run on FreeBSD (via Shippable) poll: 0 - wait_for: port={{ http_port }}