From 5bcfee95d7dafcaabe4a92b3e8f61f829b15651a Mon Sep 17 00:00:00 2001 From: Areli Fuss Date: Sun, 24 Sep 2017 15:08:11 +0300 Subject: Add TOX file Add too.ini to support python verification task Change-Id: Ie30f34a6ff76046676ca479f05ce5ca4f8fc931e Issue-Id: VVP-25 Signed-off-by: Areli Fuss --- tox.ini | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tox.ini (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..6a671ea --- /dev/null +++ b/tox.ini @@ -0,0 +1,23 @@ +[tox] +skipsdist=True +envlist = py27,py3,style +setupdir = imagescanner/ + +[testenv] +distribute = False +commands = + {envpython} --version + pytest --version + pytest --cov=imagescanner +deps = flake8 + pytest-cov + pytest + +[testenv:style] +commands = flake8 + +[testenv:py27] +basepython=python2.7 + +[testenv:py3] +basepython=python3.6 -- cgit 1.2.3-korg