Add python 3.7 test configuration; drop future import in tox.ini

This commit is contained in:
Karl Kroening 2019-07-05 19:54:31 -05:00
parent e740f6bb49
commit 8f3cb6cada
2 changed files with 4 additions and 2 deletions

View File

@ -20,6 +20,9 @@ matrix:
- python: 3.6 - python: 3.6
env: env:
- TOX_ENV=py36 - TOX_ENV=py36
- python: 3.7
env:
- TOX_ENV=py37
- python: pypy - python: pypy
env: env:
- TOX_ENV=pypy - TOX_ENV=pypy

View File

@ -4,11 +4,10 @@
# 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
deps = deps =
future
pytest pytest
pytest-mock pytest-mock