diff options
-rwxr-xr-x | run_unit_tests.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/run_unit_tests.sh b/run_unit_tests.sh index c18f3cab3..79d05d3d1 100755 --- a/run_unit_tests.sh +++ b/run_unit_tests.sh @@ -2,22 +2,6 @@ set -o errexit set -o pipefail -function clean_results_dir { - if [ -d "/home/opnfv/functest/results" ] - then - sudo rm -rf /home/opnfv/functest/results - fi -} - -# ****************************** -# prepare the env for the tests -# ****************************** -# clean useless results dir -# should be done at the end -# but in case of crash during unit test -# clean it anyway -clean_results_dir - # Either Workspace is set (CI) if [ -z $WORKSPACE ] then @@ -59,10 +43,4 @@ rc=$? deactivate -# ******* -# clean -# ******* -# Clean useless logs -clean_results_dir - exit $rc |