Skip to content

Commit 46f51f5

Browse files
committed
clean-up .travis.yml
1 parent 7036134 commit 46f51f5

File tree

1 file changed

+10
-18
lines changed

1 file changed

+10
-18
lines changed

.travis.yml

Lines changed: 10 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,36 +5,28 @@ matrix:
55
# Linux Python 2
66
- sudo: required
77
language: python
8-
python: "2.7"
9-
services:
10-
- docker
11-
env:
12-
- "PYTHON=python"
8+
python: 2.7
9+
services: docker
10+
env: PYTHON=python
1311

1412
# Linux Python 3
1513
- sudo: required
1614
language: python
17-
python: "3.4"
18-
services:
19-
- docker
20-
env:
21-
- "PYTHON=python"
15+
python: 3.4
16+
services: docker
17+
env: PYTHON=python
2218

2319
# macOS Python 2
2420
- os: osx
25-
env:
26-
- "PYTHON=python2"
21+
env: PYTHON=python2
2722

2823
# macOS Python 3
2924
- os: osx
30-
env:
31-
- "PYTHON=python3"
25+
env: PYTHON=python3
3226
before_install:
3327
- brew update
3428
- brew outdated python || brew upgrade python
3529

36-
install:
37-
- $PYTHON -m pip install -r requirements-dev.txt
30+
install: $PYTHON -m pip install -r requirements-dev.txt
3831

39-
script:
40-
- $PYTHON ./bin/run_tests.py
32+
script: $PYTHON ./bin/run_tests.py

0 commit comments

Comments
 (0)