c9227f7920
* Updated all files to reflect changes in engine configuration overhaul. * Cleaned up post-install processes and improved post-install reporting of where configs are being copied to. * Moved ConfigSectionInterface class to opencafe Change-Id: If0ddf88563c3ff7cf9971221e19b5f4666db295f
10 lines
189 B
Python
10 lines
189 B
Python
# Configure path for py.test
|
|
import os
|
|
|
|
os.environ["OPENCAFE_ENGINE_CONFIG_FILE"] = os.path.join(
|
|
os.path.dirname(__file__),
|
|
"unittest.engine.config"
|
|
)
|
|
|
|
os.environ["MOCK"] = 'True'
|