summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2018-09-16 12:29:02 +0200
committerSybren A. Stüvel <sybren@stuvel.eu>2018-09-16 12:29:02 +0200
commitf4e2e1e1de70a3c3a8153047d4c91e9249a7d047 (patch)
treea7f0074e8a013795d3f079cd1ab209fa2d33dbc0
parent2e07440a40030b95f07fe05b2f3a00d9732e0a89 (diff)
downloadrsa-git-f4e2e1e1de70a3c3a8153047d4c91e9249a7d047.tar.gz
Remove Travis CI testing for Python 3.7
Python 3.7 is not yet supported by Travis CI. See https://github.com/travis-ci/travis-ci/issues/9815 Also fixed a mistake in the test config.
-rw-r--r--.travis.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index a3d5720..0df42d2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,12 +3,15 @@ cache: pip
# Environment changes have to be manually synced with 'tox.ini'.
# See: https://github.com/travis-ci/travis-ci/issues/3024
+
+# Python 3.7 is not yet supported by Travis CI.
+# See: https://github.com/travis-ci/travis-ci/issues/9815
+
python:
- 2.7
- 3.4
- 3.5
- 3.6
- - 3.7
- "pypy"
install:
@@ -16,7 +19,7 @@ install:
- pipenv install --dev --ignore-pipfile
script:
- - pipenv run tox
+ - pipenv run py.test
after_success:
- pipenv run coveralls