From: Cédric Ollivier Date: Tue, 12 Jul 2016 08:24:38 +0000 (+0200) Subject: Stop creating the useless ODL results dir X-Git-Tag: 0.2~1412^2~1 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=97b4b323036b4174eb532c683ded09119b562416;p=functest-xtesting.git Stop creating the useless ODL results dir Outputs and logs are pushed in ${FUNCTEST_RESULTS_DIR}/odl (instead of ${FUNCTEST_RESULTS_DIR}/ODL). And this directory is created by the related testing script. Change-Id: Ie4ad6228d81d3578e777029da45700da09dba8fc Signed-off-by: Cédric Ollivier --- diff --git a/ci/prepare_env.py b/ci/prepare_env.py index 4f29260f..ed6a4ed5 100644 --- a/ci/prepare_env.py +++ b/ci/prepare_env.py @@ -133,13 +133,6 @@ def create_directories(): else: logger.debug(" %s already exists." % FUNCTEST_DATA_DIR) - ODL_RESULTS_DIR = FUNCTEST_RESULTS_DIR + "/ODL/" - if not os.path.exists(ODL_RESULTS_DIR): - os.makedirs(ODL_RESULTS_DIR) - logger.info(" %s created." % ODL_RESULTS_DIR) - else: - logger.debug(" %s already exists." % ODL_RESULTS_DIR) - def source_rc_file(): print_separator()