Skip to content

Commit c435fb9

Browse files
committed
Use language option in travis config
1 parent 6d661f2 commit c435fb9

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

.travis.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
11
language: python
2-
sudo: false
2+
3+
python:
4+
- 3.6
5+
- 3.7
6+
- 3.8
7+
38
matrix:
49
include:
510
- python: '3.7'
611
env: TOXENV=flake8
7-
- python: '3.6'
8-
- python: '3.7'
9-
- python: '3.8'
12+
1013
cache:
1114
directories:
1215
- $HOME/.cache/pip
1316
- $TRAVIS_BUILD_DIR/.tox
17+
1418
install:
15-
- pip install tox tox-travis coveralls
19+
- pip install tox tox-travis coveralls
20+
1621
script:
17-
- tox
22+
- tox
23+
1824
after_success:
19-
- coveralls
25+
- coveralls

0 commit comments

Comments
 (0)