Expand integration tests to use stable/edge versions of juju (#155)
[osm/N2VC.git] / tox.ini
diff --git a/tox.ini b/tox.ini
index 5babec0..789bbeb 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -11,7 +11,18 @@ skipsdist=True
 usedevelop=True
 passenv =
     HOME
-commands = py.test -rsx
 deps =
     pytest
+    pytest-asyncio
+    pytest-xdist
     mock
+    asynctest
+    ipdb
+
+[testenv:py35]
+# default tox env excludes integration tests
+commands = py.test -ra -v -s -x -n auto -k 'not integration' {posargs}
+
+[testenv:integration]
+basepython=python3
+commands = py.test -ra -v -s -x -n auto {posargs}