Fix tox.ini 97/101697/4
authorAric Gardner <agardner@linuxfoundation.org>
Thu, 13 Feb 2020 17:15:52 +0000 (12:15 -0500)
committerAric Gardner <agardner@linuxfoundation.org>
Thu, 13 Feb 2020 17:23:48 +0000 (12:23 -0500)
python2 is EOL

Issue-ID: CIMAN-33
Signed-off-by: Aric Gardner <agardner@linuxfoundation.org>
Change-Id: I547cb9ca20ae8befe144528dc9270f1fc9cf4d14

.gitreview [new file with mode: 0644]
pylog/.gitignore [new file with mode: 0644]
pylog/tox.ini

diff --git a/.gitreview b/.gitreview
new file mode 100644 (file)
index 0000000..9587901
--- /dev/null
@@ -0,0 +1,5 @@
+[gerrit]
+host=gerrit.onap.org
+port=29418
+project=logging-analytics.git
+defaultbranch=master
diff --git a/pylog/.gitignore b/pylog/.gitignore
new file mode 100644 (file)
index 0000000..9d5ff4e
--- /dev/null
@@ -0,0 +1,4 @@
+.coverage
+.tox/
+__pycache__/
+tests/__pycache__/
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