mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-19 14:41:25 +00:00
14 lines
348 B
Python
14 lines
348 B
Python
from behave import step
|
|
|
|
from utils import assert_schema
|
|
|
|
|
|
@step("Les données IFC doivent utiliser le schéma {schema}")
|
|
def step_impl(context, schema):
|
|
try:
|
|
context.execute_steps(
|
|
"* IFC data must use the {schema} schema".format(schema=schema)
|
|
)
|
|
except Exception:
|
|
assert_schema(schema, context.schema)
|