Files
IfcOpenShell/src/ifcbimtester/bimtester/features/environment.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
302 B
Python
Raw Normal View History

2019-10-15 11:58:26 +11:00
from behave.model import Scenario
2020-11-01 19:22:49 +07:00
2019-10-15 11:58:26 +11:00
def before_all(context):
userdata = context.config.userdata
2020-12-18 16:12:11 +01:00
context.localedir = userdata.get("localedir")
continue_after_failed = userdata.getbool("runner.continue_after_failed_step", True)
2019-10-15 11:58:26 +11:00
Scenario.continue_after_failed_step = continue_after_failed