Stop creating the useless ODL results dir 23/16723/1
authorCédric Ollivier <cedric.ollivier@orange.com>
Tue, 12 Jul 2016 08:24:38 +0000 (10:24 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Tue, 12 Jul 2016 08:29:08 +0000 (10:29 +0200)
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 <cedric.ollivier@orange.com>
ci/prepare_env.py

index 4f29260..ed6a4ed 100644 (file)
@@ -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()