7 lines
297 B
Python
7 lines
297 B
Python
def before_all(context):
|
|
# -- SET LOG LEVEL: behave --logging-level=ERROR ...
|
|
# on behave command-line or in "behave.ini".
|
|
context.config.setup_logging()
|
|
|
|
# -- ALTERNATIVE: Setup logging with a configuration file.
|
|
# context.config.setup_logging(configfile="behave_logging.ini") |