aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini17
1 files changed, 17 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..309296d
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,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