Merge "Use managed guava version"
[optf/osdf.git] / tox.ini
1
2 [tox]
3 skipsdist=True
4 envlist = py3
5
6 [testenv]
7 distribute = False
8 commands =
9     - cat /etc/hosts
10     /bin/bash test/functest/scripts/start-simulators.sh
11     coverage run --module pytest --junitxml xunit-results.xml
12     coverage xml --omit=".tox/py3/*","test/*"
13     coverage report -m --omit=".tox/py3/*","test/*"
14     /bin/bash test/functest/scripts/stop-simulators.sh
15     # TODO: need to update the above "omit" when we package osdf as pip-installable
16 deps = -r{toxinidir}/requirements.txt 
17     -r{toxinidir}/test/test-requirements.txt
18
19 [run]
20 source=./osdf/,osdfapp.py
21
22 [testenv:py3]
23 basepython=python3.6