From f01e1496ba4c520b011663b1ff634db7a668a383 Mon Sep 17 00:00:00 2001 From: Emma Foley Date: Tue, 7 Nov 2017 21:04:08 +0000 Subject: Move test scripts to tools/ Move the scripts that tox uses for running tests to the tools/ directory: * run_tests.sh -> tools/run_tests.sh * tests/ci/cover.{sh,awk} -> tools/ JIRA: YARDSTICK-837 Change-Id: I817c9e5f58c06b45f1de3f369318f4bb24168677 Signed-off-by: Emma Foley --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index ed2fd4a7d..9a82878b0 100644 --- a/tox.ini +++ b/tox.ini @@ -13,7 +13,7 @@ whitelist_externals = /bin/bash [testenv:py27] commands = - /bin/bash ./run_tests.sh --unit + /bin/bash {toxinidir}/tools/run_tests.sh --unit [testenv:py3] basepython = python3 @@ -32,11 +32,11 @@ commands = [testenv:coverage] basepython = python3 commands = - /bin/bash ./run_tests.sh --coverage + /bin/bash {toxinidir}/tools/run_tests.sh --coverage [testenv:functional] commands = - /bin/bash ./run_tests.sh --functional + /bin/bash {toxinidir}/tools/run_tests.sh --functional [testenv:functional-py3] basepython = python3 -- cgit 1.2.3-korg