Adding an autostart in Docker
[optf/osdf.git] / tox.ini
1
2 [tox]
3 skipsdist=True
4 envlist = py3
5
6 [testenv]
7 distribute = False
8 commands =
9     coverage run --module pytest --junitxml xunit-results.xml
10     coverage xml --omit=".tox/py3/*","test/*"
11     coverage report -m --omit=".tox/py3/*","test/*"
12     # TODO: need to update the above "omit" when we package osdf as pip-installable
13 deps = -r{toxinidir}/requirements.txt 
14     -r{toxinidir}/test/test-requirements.txt
15
16 [run]
17 source=./osdf/,osdfapp.py
18
19 [testenv:py3]
20 basepython=python3.6