mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-09 13:52:23 +00:00
55 lines
1.7 KiB
Python
55 lines
1.7 KiB
Python
import os
|
|
|
|
from behave.model import Scenario
|
|
from logfile import create_logfile
|
|
from logfile import append_logfile
|
|
from zoom_smart_view import append_zoom_smartview
|
|
from zoom_smart_view import create_zoom_smartview
|
|
from bimtester.ifc import IfcStore
|
|
from bimtester.lang import switch_locale
|
|
|
|
|
|
this_path = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
|
|
def before_all(context):
|
|
userdata = context.config.userdata
|
|
|
|
if context.config.lang:
|
|
switch_locale(userdata.get("localedir"), context.config.lang)
|
|
|
|
continue_after_failed = userdata.getbool("runner.continue_after_failed_step", True)
|
|
Scenario.continue_after_failed_step = continue_after_failed
|
|
|
|
# TODO: refactor smart view support into a decoupled module
|
|
# context.ifc_path = userdata.get("ifc", "")
|
|
# context.ifc_basename = os.path.basename(
|
|
# os.path.splitext(context.ifc_path)[0]
|
|
# )
|
|
|
|
# context.outpath = os.path.join(this_path, "..")
|
|
|
|
# context.thelogfile = os.path.join(context.outpath, context.ifc_basename + ".log")
|
|
# create_logfile(
|
|
# context.thelogfile,
|
|
# context.ifc_basename,
|
|
# )
|
|
|
|
# # set up smart view file
|
|
# context.smview_file = os.path.join(context.outpath, context.ifc_basename + ".bcsv")
|
|
# create_zoom_smartview(
|
|
# context.smview_file,
|
|
# context.ifc_basename,
|
|
# )
|
|
|
|
|
|
def after_step(context, step):
|
|
pass
|
|
# TODO: refactor smart view support into a decoupled module
|
|
#if step.status == "failed":
|
|
# # append log file
|
|
# append_logfile(context, step)
|
|
# # extend smart view
|
|
# if hasattr(context, "falseguids"):
|
|
# append_zoom_smartview(context.smview_file, step.name, context.falseguids)
|