blob: acd0d31d53852a9107cb5169037f89885295087d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env python
# pylint: disable=missing-docstring
import os
ENV_FILE = '/var/lib/xtesting/conf/env_file'
RESULTS_DIR = '/var/lib/xtesting/results'
LOG_PATH = os.path.join(RESULTS_DIR, 'xtesting.log')
DEBUG_LOG_PATH = os.path.join(RESULTS_DIR, 'xtesting.debug.log')
INI_PATH = 'ci/logging.ini'
DEBUG_INI_PATH = 'ci/logging.debug.ini'
|