From 29476ed0317dcc635dff67d2fc9fd68233aa6656 Mon Sep 17 00:00:00 2001 From: Emma Foley Date: Tue, 7 Nov 2017 20:29:03 +0000 Subject: tox: Split tests into separate tox environments * Add argument parsing to run_tests.sh so tests can be selected * Define tox environments for: * Coverage * Unit tests * Functional tests * for py27 and py3 * Add environments to default env * Behaviour is the same when the tests are run * Updates the py27 environment config, and adds a py3 config. * Commands from testenv are moved to py27 * py3 env uses the same commands, but runs with python3 Change-Id: I22f17c0103101f01ec268b1de9d146780ae67a6d JIRA: YARDSTICK-837 Signed-off-by: Emma Foley --- tox.ini | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index 882543d0c..ed2fd4a7d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] minversion = 2.0 skipsdist = True -envlist = py27,py3,pep8 +envlist = py{27,3},pep8,functional{,-py3},coverage [testenv] usedevelop=True @@ -9,13 +9,15 @@ passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt -commands = /bin/bash ./run_tests.sh whitelist_externals = /bin/bash [testenv:py27] -# don't re-run coverage on both py27 py3, it takes too long -setenv = - SKIP_COVERAGE=1 +commands = + /bin/bash ./run_tests.sh --unit + +[testenv:py3] +basepython = python3 +commands = {[testenv:py27]commands} [testenv:pep8] # for gate testing, scans only the files changed in the last commit @@ -27,6 +29,19 @@ commands = commands = /bin/bash tools/coding-checks.sh --pylint '{posargs}' +[testenv:coverage] +basepython = python3 +commands = + /bin/bash ./run_tests.sh --coverage + +[testenv:functional] +commands = + /bin/bash ./run_tests.sh --functional + +[testenv:functional-py3] +basepython = python3 +commands = {[testenv:functional]commands} + [testenv:os-requirements] commands = python {toxinidir}/tools/os-requirements-check.py {envdir} -- cgit 1.2.3-korg