From 0b855c08fd98fb8fa0f4bc40d8df430c897b4bad Mon Sep 17 00:00:00 2001 From: Ankitkumar Patel Date: Sun, 11 Feb 2018 17:51:13 -0500 Subject: Re-org folders, onboard test folder, test config Reorganized the folder structure. Onboarded testcases. Added test config. Issue-ID: OPTFRA-74 Change-Id: I97882a162a405a18ffd287495039e15ae9d0ad7b Signed-off-by: Ankitkumar Patel --- tox.ini | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tox.ini (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..309296d --- /dev/null +++ b/tox.ini @@ -0,0 +1,17 @@ + +[tox] +skipsdist=True +envlist = py3 + +[testenv] +distribute = False +commands = + coverage run --module pytest + coverage report --omit=".tox/py3/*","test/*" + # TODO: need to update the above "omit" when we package osdf as pip-installable + # coverage html --omit=.tox/py3/* -d htmlcov +deps = -r{toxinidir}/requirements.txt + -r{toxinidir}/test/test-requirements.txt + +[testenv:py3] +basepython=python3.6 -- cgit 1.2.3-korg