Skip to content

Commit

Permalink
Add Python 3.7 to tox configurations
Browse files Browse the repository at this point in the history
Current tox configuration was missing Python 3.7 because of which tests were
never run for a Python 3.7 environment. Fix that by adding py37 to the configurations.
  • Loading branch information
inashivb authored and jasonish committed Oct 4, 2018
1 parent d37e148 commit d90d60e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tox-integration.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py27, py34, py35, py36
envlist = py27, py34, py35, py36, py37

[testenv]
commands = python ./tests/integration_tests.py
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py27, py34, py35, py36
envlist = py27, py34, py35, py36, py37

[testenv]
commands = pytest
Expand Down

0 comments on commit d90d60e

Please sign in to comment.