mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-10 14:07:43 +00:00
9 lines
302 B
Python
9 lines
302 B
Python
from behave.model import Scenario
|
|
|
|
|
|
def before_all(context):
|
|
userdata = context.config.userdata
|
|
context.localedir = userdata.get("localedir")
|
|
continue_after_failed = userdata.getbool("runner.continue_after_failed_step", True)
|
|
Scenario.continue_after_failed_step = continue_after_failed
|