Fix log directory problem when exec UT 33/58833/1
authorfujinhua <fu.jinhua@zte.com.cn>
Fri, 3 Aug 2018 03:50:44 +0000 (11:50 +0800)
committerfujinhua <fu.jinhua@zte.com.cn>
Fri, 3 Aug 2018 03:50:44 +0000 (11:50 +0800)
Change log directory when exec UT

Change-Id: Iac0fff60eda7429869f69cd48a82f85979580c3d
Issue-ID: VFC-1010
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
zte/vmanager/driver/settings.py

index e708020..4f7e21c 100644 (file)
@@ -147,10 +147,14 @@ STATIC_URL = '/static/'
 LOGGING_CONFIG = None
 # yaml configuration of logging
 LOGGING_FILE = os.path.join(BASE_DIR, 'driver/log.yml')
+if 'test' in sys.argv:
+    os.system('sed -i "s|/var/log/onap/vfc/ztevnfmdriver|/tmp|" %s' % LOGGING_FILE)
 config.yamlConfig(filepath=LOGGING_FILE, watchDog=True)
 
 
 if 'test' in sys.argv:
+    os.system('sed -i "s|/tmp|/var/log/onap/vfc/ztevnfmdriver|" %s' % LOGGING_FILE)
+
     from driver.pub.config import config
     config.REG_TO_MSB_WHEN_START = False
     REST_FRAMEWORK = {}