From 5f3c5cc7afdc1f42b324406d7df4a9d21a9d77f4 Mon Sep 17 00:00:00 2001 From: Ross Brattain Date: Wed, 11 Jan 2017 13:09:47 -0800 Subject: basic tox.ini for python 2.7 and python 3 unittests Nothing fancy for now, just call run_tests.sh If we want to expand we could add pep8, coverage to tox. See dovetail tox.ini for example Change-Id: I8b5897779ed9622dd1b38612cb393fc214ec6300 Signed-off-by: Ross Brattain --- tox.ini | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tox.ini (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini new file mode 100644 index 000000000..3dfb982bf --- /dev/null +++ b/tox.ini @@ -0,0 +1,22 @@ +[tox] +minversion = 2.0 +skipsdist = True +envlist = py27,py3 + +[testenv] +usedevelop=True +deps = -rrequirements.txt +commands = /bin/bash ./run_tests.sh +whitelist_externals = /bin/bash + +[flake8] +# E125 is deliberately excluded. See https://github.com/jcrocholl/pep8/issues/126 +# The rest of the ignores are TODOs +# New from hacking 0.9: E129, E131, H407, H405 +# E251 Skipped due to https://github.com/jcrocholl/pep8/issues/301 + +# nova flake8 ignores +#ignore = E121,E122,E123,E124,E125,E126,E127,E128,E129,E131,E251,H405 +# dovetail flake8 ignores +ignore = E123,E125,H803 +exclude = .venv,.git,.tox,dist,docs,*egg,build -- cgit 1.2.3-korg