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