Skip to content

Commit

Permalink
[AIRFLOW-6009] Switch off travis_wait for regular tests (#6600)
Browse files Browse the repository at this point in the history
(cherry picked from commit cd6a950)
  • Loading branch information
potiuk committed Nov 25, 2019
1 parent 8102e3a commit 6e6d34f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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"

0 comments on commit 6e6d34f

Please sign in to comment.