From 6e6d34f31c4f14e8f1ece31f60cab38acf64a765 Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Mon, 18 Nov 2019 19:52:17 +0100 Subject: [PATCH] [AIRFLOW-6009] Switch off travis_wait for regular tests (#6600) (cherry picked from commit cd6a950ffac6f680d71b257c19be27fd35bb79ba) --- .travis.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 28577216abe461..651faa127dedfb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -71,6 +71,7 @@ jobs: PYTHON_VERSION=3.6 python: "3.6" stage: test + script: travis_wait 30 "./scripts/ci/ci_run_airflow_testing.sh" - name: "Tests postgres kubernetes python 3.6 (git)" env: >- BACKEND=postgres @@ -80,6 +81,7 @@ jobs: PYTHON_VERSION=3.6 python: "3.6" stage: test + script: travis_wait 30 "./scripts/ci/ci_run_airflow_testing.sh" - name: "Tests postgres kubernetes python 2.7 (persistent)" env: >- BACKEND=postgres @@ -89,6 +91,7 @@ jobs: PYTHON_VERSION=2.7 python: "2.7" stage: test + script: travis_wait 30 "./scripts/ci/ci_run_airflow_testing.sh" - name: "Tests postgres kubernetes python 2.7 (git)" env: >- BACKEND=postgres @@ -98,8 +101,9 @@ jobs: PYTHON_VERSION=2.7 python: "2.7" stage: test -services: - - docker + script: travis_wait 30 "./scripts/ci/ci_run_airflow_testing.sh" + services: + - docker before_install: - ./scripts/ci/ci_before_install.sh -script: travis_wait 30 "./scripts/ci/ci_run_airflow_testing.sh" +script: "./scripts/ci/ci_run_airflow_testing.sh"