Skip to content

Commit

Permalink
need to include python37 in the tox commands
Browse files Browse the repository at this point in the history
  • Loading branch information
lmtierney committed Jul 26, 2018
1 parent 12edb78 commit 0e9b02e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[tox]
envlist = py{27,36}-{unit,chrome,edge,firefox,ie,remote,safari}, flake8
envlist = py{27,36,37}-{unit,chrome,edge,firefox,ie,remote,safari}, flake8

[testenv]
passenv = DISPLAY CI TRAVIS
commands =
py{27,36}-unit: pytest {posargs:tests/unit}
py{27,36}-chrome: pytest --browser=chrome {posargs:tests/browser}
py{27,36}-edge: pytest --browser=edge {posargs:tests/browser}
py{27,36}-firefox: pytest --browser=firefox {posargs:tests/browser}
py{27,36}-ie: pytest --browser=ie {posargs:tests/browser}
py{27,36}-remote: pytest --browser=remote {posargs:tests/browser}
py{27,36}-safari: pytest --browser=safari {posargs:tests/browser}
py{27,36,37}-unit: pytest {posargs:tests/unit}
py{27,36,37}-chrome: pytest --browser=chrome {posargs:tests/browser}
py{27,36,37}-edge: pytest --browser=edge {posargs:tests/browser}
py{27,36,37}-firefox: pytest --browser=firefox {posargs:tests/browser}
py{27,36,37}-ie: pytest --browser=ie {posargs:tests/browser}
py{27,36,37}-remote: pytest --browser=remote {posargs:tests/browser}
py{27,36,37}-safari: pytest --browser=safari {posargs:tests/browser}
install_command = pip install -v {opts} {packages}
deps =
pytest
Expand Down

0 comments on commit 0e9b02e

Please sign in to comment.