Skip to content

Commit

Permalink
fix python 3.7
Browse files Browse the repository at this point in the history
for some reason travis-ci still has it listed as 3.7-dev
  • Loading branch information
gtmanfred committed Mar 15, 2019
1 parent b37b47d commit 9332567
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ python:
- '3.4'
- '3.5'
- '3.6'
- '3.7'
- '3.7-dev'

env:
- SALT=-v2018.3 BACKEND=-cherrypy CODECOV=py
Expand All @@ -31,7 +31,8 @@ matrix:
env:

script:
- docker run -v $PWD:/pepper -ti --rm gtmanfred/pepper:latest tox -c /pepper/tox.ini -e "${TRAVIS_PYTHON_VERSION%%.*}flake8,${CODECOV}${TRAVIS_PYTHON_VERSION//./}${BACKEND}${SALT}"
- PYTHON="${TRAVIS_PYTHON_VERSION%-dev}"
- docker run -v $PWD:/pepper -ti --rm gtmanfred/pepper:latest tox -c /pepper/tox.ini -e "${TRAVIS_PYTHON_VERSION%%.*}flake8,${CODECOV}${PYTHON//./}${BACKEND}${SALT}"

after_success:
- sudo chown $USER .tox/
Expand Down

0 comments on commit 9332567

Please sign in to comment.