diff options
author | Aric Gardner <agardner@linuxfoundation.org> | 2020-02-13 12:15:52 -0500 |
---|---|---|
committer | Aric Gardner <agardner@linuxfoundation.org> | 2020-02-13 12:23:48 -0500 |
commit | 14b43762d64cdda2e90a59807f2b61ce499be4a4 (patch) | |
tree | 0ffe5053e835703f7f874cdb3b7077cc62fd2759 /pylog/tox.ini | |
parent | 2c101110dbd2b8cf4ad82eec2c6848a0b671edf2 (diff) |
Fix tox.ini
python2 is EOL
Issue-ID: CIMAN-33
Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Change-Id: I547cb9ca20ae8befe144528dc9270f1fc9cf4d14
Diffstat (limited to 'pylog/tox.ini')
-rw-r--r-- | pylog/tox.ini | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/pylog/tox.ini b/pylog/tox.ini index 14ebfd0..87209a1 100644 --- a/pylog/tox.ini +++ b/pylog/tox.ini @@ -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 |