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