diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-02-23 09:53:47 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-02-23 09:53:48 +0000 |
commit | 1e03cc8d9fb6487da57b72c8f6e213cb9d54bca7 (patch) | |
tree | c1854b876eeacf31344e1b23062a9bbed0507f6a | |
parent | a931c6fe03313fac0cb1374acad2d753670328bf (diff) | |
parent | f937af8864c6fe6d392c9b9766df98d164c64459 (diff) |
Merge "remove "print" in tempest to avoid having a message "None" in the output"
-rw-r--r-- | testcases/VIM/OpenStack/CI/libraries/run_tempest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testcases/VIM/OpenStack/CI/libraries/run_tempest.py b/testcases/VIM/OpenStack/CI/libraries/run_tempest.py index 294669182..660e21bc2 100644 --- a/testcases/VIM/OpenStack/CI/libraries/run_tempest.py +++ b/testcases/VIM/OpenStack/CI/libraries/run_tempest.py @@ -217,7 +217,7 @@ def configure_tempest(): # Copy tempest.conf to /home/opnfv/functest/results/tempest/ - print shutil.copyfile(tempest_conf_file,TEMPEST_RESULTS_DIR+'/tempest.conf') + shutil.copyfile(tempest_conf_file,TEMPEST_RESULTS_DIR+'/tempest.conf') return True |