Added SO-OOF/HAS API document
[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 
10     coverage report --omit=".tox/py3/*","test/*"
11     # TODO: need to update the above "omit" when we package osdf as pip-installable
12     # coverage html --omit=.tox/py3/* -d htmlcov
13 deps = -r{toxinidir}/requirements.txt 
14     -r{toxinidir}/test/test-requirements.txt
15
16 [testenv:py3]
17 basepython=python3.6