behave-framework/features/environment.py
Greg Gauthier 63fcdbc922
All checks were successful
Pylint / build (3.12) (push) Successful in 9s
fix code, update pylint, other goodies
2024-07-23 15:00:35 +01:00

10 lines
267 B
Python

# pylint: disable=unused-argument
def before_all(context):
# -- SET LOG LEVEL: behave --logging-level=ERROR ...
# on behave command-line or in "behave.ini".
context.config.setup_logging()
def after_scenario(context, scenario):
context.driver.quit()