summaryrefslogtreecommitdiffstats
path: root/k8s/tox.ini
diff options
context:
space:
mode:
authorJack Lucas <jflucas@research.att.com>2018-03-22 17:43:01 +0000
committerJack Lucas <jflucas@research.att.com>2018-03-23 12:46:10 +0000
commit1ed29c111f50e33ac89915ba86b530820da3a689 (patch)
tree314ad8dc5dd2cad4ba89bac5662015f8a9c43ced /k8s/tox.ini
parent19a075b395d687753de0f0266842cb9af8f24682 (diff)
Add DCAE Kubernetes plugin
Change-Id: Ic329f77bb09dcccfd49a34a8f84d387e8da929c6 Issue-ID: DCAEGEN2-410 Signed-off-by: Jack Lucas <jflucas@research.att.com>
Diffstat (limited to 'k8s/tox.ini')
-rw-r--r--k8s/tox.ini15
1 files changed, 15 insertions, 0 deletions
diff --git a/k8s/tox.ini b/k8s/tox.ini
new file mode 100644
index 0000000..d58364b
--- /dev/null
+++ b/k8s/tox.ini
@@ -0,0 +1,15 @@
+# content of: tox.ini , put in same dir as setup.py
+[tox]
+envlist = py27
+
+[testenv]
+deps=
+ -rrequirements.txt
+ pytest
+ coverage
+ pytest-cov
+setenv=
+ PYTHONPATH={toxinidir}
+commands=
+ pytest --junitxml xunit-results.xml --cov k8splugin --cov-report xml
+ coverage xml \ No newline at end of file