blob: 5326ecba301e4ba1f06c1a0af29b74cadf1271bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import os
# default log output directory for all logs
LOG_DIR = '/tmp'
# default log for all "small" executables
LOG_FILE_DEFAULT = 'valid-overall.log'
ROOT_DIR = os.path.normpath(os.path.join(
os.path.dirname(os.path.realpath(__file__)), '../'))
SW_PRE_VALID_DIR = os.path.join(ROOT_DIR, 'SoftwarePreValid')
SW_POST_VALID_DIR = os.path.join(ROOT_DIR, 'SoftwarePostValid')
NW_LINKS_VALID_DIR = os.path.join(ROOT_DIR, 'NwLinksValid')
# 'debug', 'info', 'warning', 'error', 'critical'
VERBOSITY = 'warning'
EXCLUDE_MODULES = ['']
|