diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-11-29 11:50:07 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-11-29 11:50:07 +0000 |
commit | 3cc9280fe7f341b60d4a2384d7fa6e33d575a7a2 (patch) | |
tree | 8cc94208f579673d24bdf159b0d9c85733be3297 /tox.ini | |
parent | 449679aeee27e08d5e47a7d5d76857b4827e263e (diff) | |
parent | 29476ed0317dcc635dff67d2fc9fd68233aa6656 (diff) |
Merge "tox: Split tests into separate tox environments"
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 25 |
1 files changed, 20 insertions, 5 deletions
@@ -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} |