Explicitly set basepython=python3 for integration tests.
[osm/N2VC.git] / tox.ini
diff --git a/tox.ini b/tox.ini
index 235813e..d4f3a73 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -11,8 +11,16 @@ skipsdist=True
 usedevelop=True
 passenv =
     HOME
-commands = py.test -ra -s -x
 deps =
     pytest
     pytest-asyncio
+    pytest-xdist
     mock
+
+[testenv:py35]
+# default tox env excludes integration tests
+commands = py.test -ra -s -x -n auto -k 'not integration'
+
+[testenv:integration]
+basepython=python3
+commands = py.test -ra -s -x -n auto