Fix tox.ini
[logging-analytics.git] / pylog / tox.ini
index 14ebfd0..87209a1 100644 (file)
@@ -1,29 +1,37 @@
 [tox]
-envlist =py,py3,pep8
+envlist =
+    testenv,
+    jenkins,
+    pep8
+    flake8
+    cover
 skipsdist = true
 skip_missing_interpreters = true
 
 [tox:jenkins]
+basepython = python3
 downloadcache = ~/cache/pip
 
 [testenv]
+basepython = python3
 deps = -r{toxinidir}/requirements.txt
         pytest
         coverage
         pytest-cov
 setenv = PYTHONPATH={toxinidir}/
 
-commands =
-  /usr/bin/find . -type f -name "*.py[c|o]" -not -path "./.tox" -delete
-  py.test
+commands = pytest
 
 [testenv:pep8]
+basepython = python3
 deps=flake8
 commands=flake8
 
 [flake8]
+basepython = python3
 show-source = true
 exclude = env,venv,.venv,.git,.tox,dist,doc,*egg,build
 
 [testenv:cover]
+basepython = python3
 commands = py.test --cov  onaplogging