Merge pull request #245 from cclauss/patch-1

Travis CI and tox.ini: Add Python 3.7 to the testing
This commit is contained in:
Karl Kroening 2019-12-30 02:20:24 -06:00 committed by GitHub
commit 8809a54cff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 11 deletions

View File

@ -9,20 +9,18 @@ before_install:
matrix: matrix:
include: include:
- python: 2.7 - python: 2.7
env: env: TOX_ENV=py27
- TOX_ENV=py27
- python: 3.4 - python: 3.4
env: env: TOX_ENV=py34
- TOX_ENV=py34
- python: 3.5 - python: 3.5
env: env: TOX_ENV=py35
- TOX_ENV=py35
- python: 3.6 - python: 3.6
env: env: TOX_ENV=py36
- TOX_ENV=py36 - python: 3.7
dist: xenial # required for Python >= 3.7
env: TOX_ENV=py37
- python: pypy - python: pypy
env: env: TOX_ENV=pypy
- TOX_ENV=pypy
install: install:
- pip install tox - pip install tox
script: script:

View File

@ -4,7 +4,7 @@
# and then run "tox" from this directory. # and then run "tox" from this directory.
[tox] [tox]
envlist = py27, py34, py35, py36, pypy envlist = py27, py34, py35, py36, py37, pypy
[testenv] [testenv]
commands = py.test -vv commands = py.test -vv