Skip to content

Commit f4e2e1e

Browse files
committed
Remove Travis CI testing for Python 3.7
Python 3.7 is not yet supported by Travis CI. See travis-ci/travis-ci#9815 Also fixed a mistake in the test config.
1 parent 2e07440 commit f4e2e1e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,23 @@ cache: pip
33

44
# Environment changes have to be manually synced with 'tox.ini'.
55
# See: https://github.com/travis-ci/travis-ci/issues/3024
6+
7+
# Python 3.7 is not yet supported by Travis CI.
8+
# See: https://github.com/travis-ci/travis-ci/issues/9815
9+
610
python:
711
- 2.7
812
- 3.4
913
- 3.5
1014
- 3.6
11-
- 3.7
1215
- "pypy"
1316

1417
install:
1518
- pip install pipenv
1619
- pipenv install --dev --ignore-pipfile
1720

1821
script:
19-
- pipenv run tox
22+
- pipenv run py.test
2023

2124
after_success:
2225
- pipenv run coveralls

0 commit comments

Comments
 (0)