diff options
author | Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com> | 2018-06-28 16:16:29 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-06-28 16:16:29 +0000 |
commit | 70ea01b882a5ff61a36f8927d64d1bf3b9446838 (patch) | |
tree | b9dad4cae41701281d22a46e5d8b4a74ec13f0c3 /tools/run_tests.sh | |
parent | 441d5f55a6e2e155d01d4b396678d0d09bfb8413 (diff) | |
parent | bb31e6c8221b854041a668ddca438444fe97d212 (diff) |
Merge "Stop running tests from tests/unit" into stable/fraser
Diffstat (limited to 'tools/run_tests.sh')
-rwxr-xr-x | tools/run_tests.sh | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/tools/run_tests.sh b/tools/run_tests.sh index 32c4f19e4..49f628eec 100755 --- a/tools/run_tests.sh +++ b/tools/run_tests.sh @@ -28,17 +28,8 @@ run_tests() { echo "Running unittest ... " if [ $FILE_OPTION == "f" ]; then - python -m unittest discover -v -s tests/unit > $logfile 2>&1 - if [ $? -ne 0 ]; then - echo "FAILED, results in $logfile" - exit 1 - fi - python -m unittest discover -v -s yardstick/tests/unit >> $logfile 2>&1 + python -m unittest discover -v -s yardstick/tests/unit > $logfile 2>&1 else - python -m unittest discover -v -s tests/unit - if [ $? -ne 0 ]; then - exit 1 - fi python -m unittest discover -v -s yardstick/tests/unit fi |