forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
19 lines (18 loc) · 754 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[tox]
envlist = py{27,35}-{chrome,edge,firefox,ie,phantomjs,remote,safari}
[testenv]
passenv = DISPLAY PYTEST_ADDOPTS
commands =
py{27,35}-chrome: py.test -n=auto --driver=Chrome {posargs}
py{27,35}-edge: py.test --driver=Edge {posargs}
py{27,35}-firefox: py.test -n=auto --driver=Firefox {posargs}
py{27,35}-ie: py.test --driver=Ie {posargs}
py{27,35}-marionette: py.test -n=auto --driver=Marionette {posargs}
py{27,35}-phantomjs: py.test -n=auto --driver=PhantomJS {posargs}
py{27,35}-remote: py.test --driver=Remote {posargs}
py{27,35}-safari: py.test --driver=Safari {posargs}
deps =
pytest==3.0.3
pytest-instafail==0.3.0
py{27,35}-phantomjs: psutil==4.3.1
py{27,35}-{chrome,firefox,marionette,phantomjs}: pytest-xdist==1.15