summaryrefslogtreecommitdiffstats
path: root/dovetail/testcase.py
diff options
context:
space:
mode:
authorxudan <xudan16@huawei.com>2018-04-25 03:35:02 -0400
committerxudan <xudan16@huawei.com>2018-05-07 02:54:02 -0400
commit27109727907de0a275946765b201fbc0bd71116f (patch)
treead8553f952bfead5b69be50d7a3f9a4290dccd80 /dovetail/testcase.py
parente112118754bbd297de52538d003fc21273e9cf3d (diff)
Decoupling Bottlenecks Docker config items from source code
There are some special Docker setting items when creating Bottlenecks Docker Cntainers. Move the special settings to config files. Disable the function to push results to DB. JIRA: DOVETAIL-645 Change-Id: Icc033222edf74c0fe4853dede2794f4226fd4252 Signed-off-by: xudan <xudan16@huawei.com>
Diffstat (limited to 'dovetail/testcase.py')
-rw-r--r--dovetail/testcase.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/dovetail/testcase.py b/dovetail/testcase.py
index 866c33b8..221d07f4 100644
--- a/dovetail/testcase.py
+++ b/dovetail/testcase.py
@@ -325,14 +325,6 @@ class BottlenecksTestcase(Testcase):
def __init__(self, testcase_yaml):
super(BottlenecksTestcase, self).__init__(testcase_yaml)
self.type = 'bottlenecks'
- self._update_cmds()
-
- def _update_cmds(self):
- if dt_cfg.dovetail_config['report_dest'].startswith("http"):
- try:
- self.testcase['validate']['cmds'][0] += ' --report'
- except KeyError:
- return
class ShellTestcase(Testcase):