forked from ssrikanta/pytest-progress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
24 lines (22 loc) · 885 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py27-pytest29-supported-xdist,
py27-pytest29-unsupported-xdist,
py34-pytest29-supported-xdist,
py35-pytest29-supported-xdist,
py35-pytest29-unsupported-xdist,
pypy-pytest29-supported-xdist
[testenv]
passenv = CI TRAVIS_BUILD_ID TRAVIS TRAVIS_BRANCH TRAVIS_JOB_NUMBER TRAVIS_PULL_REQUEST TRAVIS_JOB_ID TRAVIS_REPO_SLUG TRAVIS_COMMIT
deps =
pytest29: pytest>=2.9,<2.10
openpyxl
supported-xdist: pytest-xdist>=1.14
unsupported-xdist: pytest-xdist<1.14
pytest-rerunfailures
commands =
py.test --cov=./ {posargs:test_excel_report.py}
codecov -e TOXENV