online bottlenecks soak throughtputs
[releng.git] / modules / tox.ini
1 # Tox (http://tox.testrun.org/) is a tool for running tests
2 # in multiple virtualenvs. This configuration file will run the
3 # test suite on all supported python versions. To use it, "pip install tox"
4 # and then run "tox" from this directory.
5
6 [tox]
7 envlist = py27
8 skipsdist = True
9
10 [testenv]
11 usedevelop = True
12 setenv=
13   HOME = {envtmpdir}
14   PYTHONPATH = {toxinidir}
15
16 [testenv:modules]
17 deps=
18   -rrequirements.txt
19   -rtest-requirements.txt
20 commands =
21   nosetests \
22   --with-xunit \
23   --xunit-file=nosetests.xml \
24   --cover-package=opnfv \
25   --with-coverage \
26   --cover-xml \
27   --cover-html \
28   tests/unit