From e79f851c5b804db5884be05a50bc3ae0abe222b4 Mon Sep 17 00:00:00 2001 From: xudan Date: Tue, 28 Aug 2018 04:16:29 -0400 Subject: Change Bottlenecks volume mapping If mapping to host's /tmp, it won't clean all .log and .out files before run a new test. It causes the results file including all previous results. See https://build.opnfv.org/ci/view/dovetail/job/dovetail-apex-baremetal-default-mandatory-master/26/artifact/results/stress_logs/bottlenecks.stress.ping.out/*view*/ It will affect the results check. Mapping to DOVETAIL_HOME/results/bottlenecks, which will always be cleaned before running another test. Change-Id: I22bfc871d6f041ae38308bf8e8f685993a376973 Signed-off-by: xudan --- dovetail/test_runner.py | 1 + 1 file changed, 1 insertion(+) (limited to 'dovetail/test_runner.py') diff --git a/dovetail/test_runner.py b/dovetail/test_runner.py index cb5578b0..9b5114f8 100644 --- a/dovetail/test_runner.py +++ b/dovetail/test_runner.py @@ -145,6 +145,7 @@ class DockerRunner(object): config_item['os_insecure'] = os.getenv("OS_INSECURE") if 'DEPLOY_SCENARIO' in os.environ: config_item['deploy_scenario'] = os.environ['DEPLOY_SCENARIO'] + config_item['dovetail_home'] = os.getenv("DOVETAIL_HOME") return config_item def _update_config(self, testcase): -- cgit 1.2.3-korg