Update libjuju
[osm/N2VC.git] / modules / libjuju / tox.ini
index 789bbeb..ce421d6 100644 (file)
@@ -4,11 +4,14 @@
 # and then run "tox" from this directory.
 
 [tox]
-envlist = py35
+envlist = lint,py35
 skipsdist=True
 
 [testenv]
+basepython=python3
 usedevelop=True
+# for testing with other python versions
+commands = py.test -ra -v -s -x -n auto {posargs}
 passenv =
     HOME
 deps =
@@ -23,6 +26,15 @@ deps =
 # default tox env excludes integration tests
 commands = py.test -ra -v -s -x -n auto -k 'not integration' {posargs}
 
+[testenv:lint]
+envdir = {toxworkdir}/py35
+commands =
+    flake8 --ignore E501 {posargs} juju
+deps =
+    flake8
+
 [testenv:integration]
-basepython=python3
-commands = py.test -ra -v -s -x -n auto {posargs}
+envdir = {toxworkdir}/py35
+
+[flake8]
+exclude = juju/client/_*