Skip to content

Commit f41974c

Browse files
authored
Added Travis Wait to Docker Install Process (#2238)
* Added Travis Wait to Docker Install Process * Update .travis.yml
1 parent df80c87 commit f41974c

File tree

1 file changed

+12
-18
lines changed

1 file changed

+12
-18
lines changed

.travis.yml

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
1-
matrix:
2-
include:
3-
- language: python
4-
python:
5-
- "3.7"
6-
install:
7-
- pip install -r requirements.txt
8-
- python runner.py download
9-
script: python runner.py test
10-
deploy:
11-
provider: script
12-
script: bash -x deploy.sh
1+
os: linux
2+
dist: xenial
133

4+
language: python
5+
python:
6+
- "3.7"
7+
install:
8+
- pip install -r requirements.txt
9+
- travis_wait python runner.py download
10+
script: python runner.py test
11+
deploy:
12+
provider: script
13+
script: bash -x deploy.sh
1414

1515
notifications:
1616
email: false
17-
webhooks:
18-
urls:
19-
- https://webhooks.gitter.im/e/f694e2f80d5bba482051
20-
on_success: always
21-
on_failure: always
22-
on_start: never

0 commit comments

Comments
 (0)