summaryrefslogtreecommitdiffstats
path: root/testcases/vIMS/CI
diff options
context:
space:
mode:
Diffstat (limited to 'testcases/vIMS/CI')
-rw-r--r--testcases/vIMS/CI/vIMS.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/testcases/vIMS/CI/vIMS.py b/testcases/vIMS/CI/vIMS.py
index 05afa898b..91bec1f08 100644
--- a/testcases/vIMS/CI/vIMS.py
+++ b/testcases/vIMS/CI/vIMS.py
@@ -25,6 +25,9 @@ pp = pprint.PrettyPrinter(indent=4)
parser = argparse.ArgumentParser()
parser.add_argument("repo_path", help="Path to the repository")
parser.add_argument("-d", "--debug", help="Debug mode", action="store_true")
+parser.add_argument("-r", "--report",
+ help="Create json result file",
+ action="store_true")
args = parser.parse_args()
sys.path.append(args.repo_path + "testcases/")
@@ -385,7 +388,8 @@ def test_clearwater():
except:
logger.error("Unable to retrieve test results")
- if vims_test_result != "":
+ if vims_test_result != "" & args.report:
+ logger.debug("Push result into DB")
logger.debug("Pushing results to DB....")
git_version = functest_utils.get_git_branch(args.repo_path)
functest_utils.push_results_to_db(db_url=TEST_DB, case_name="vIMS",
@@ -413,4 +417,4 @@ def main():
cleanup_deployments()
if __name__ == '__main__':
- main() \ No newline at end of file
+ main()