diff options
author | fujinhua <fu.jinhua@zte.com.cn> | 2018-08-03 11:31:06 +0800 |
---|---|---|
committer | fujinhua <fu.jinhua@zte.com.cn> | 2018-08-03 11:31:06 +0800 |
commit | 23a8a64568e4793b97eb633bd5b54f1539a90f0c (patch) | |
tree | 44f49ac289bb8d450d9d60ddcd2ab7ac90904dd4 /res | |
parent | d856ad315e2e5532117c3bd80fc6e75cf838ea28 (diff) |
Fix log directory problem when exec UT
Change log directory when exec UT
Change-Id: I7ad9d18afcfc1991ac6ef7ffb119696b82640b49
Issue-ID: VFC-1010
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
Diffstat (limited to 'res')
-rw-r--r-- | res/res/settings.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/res/res/settings.py b/res/res/settings.py index f15deff..ceda0e4 100644 --- a/res/res/settings.py +++ b/res/res/settings.py @@ -155,10 +155,14 @@ STATIC_URL = '/static/' LOGGING_CONFIG = None # yaml configuration of logging LOGGING_FILE = os.path.join(BASE_DIR, 'res/log.yml') +if 'test' in sys.argv: + os.system('sed -i "s|/var/log/onap/vfc/gvnfm-vnfres|/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/gvnfm-vnfres|" %s' % LOGGING_FILE) + from res.pub.config import config config.REG_TO_MSB_WHEN_START = False DATABASES = {} |