diff --git a/src/ifcblenderexport/behave.ini b/src/ifcblenderexport/behave.ini deleted file mode 100644 index a3013e5e14..0000000000 --- a/src/ifcblenderexport/behave.ini +++ /dev/null @@ -1,2 +0,0 @@ -[behave.userdata] -runner.continue_after_failed_step = true diff --git a/src/ifcblenderexport/features/steps/example_steps.py b/src/ifcblenderexport/features/steps/example_steps.py deleted file mode 100644 index a2abaf7411..0000000000 --- a/src/ifcblenderexport/features/steps/example_steps.py +++ /dev/null @@ -1,33 +0,0 @@ -import ifcopenshell -from behave import given, when, then, step - -class IfcFile(object): - file = None - - @classmethod - def load(cls, path=None): - cls.file = ifcopenshell.open(path) - - @classmethod - def get(cls): - return cls.file - -@given('the IFC file "{file}"') -def step_impl(context, file): - IfcFile.load(file) - -@given('that an IFC file is loaded') -def step_impl(context): - assert IfcFile.get() - -@then('the file should be an {schema} file') -def step_impl(context, schema): - assert IfcFile.get().schema == schema - -@then('the element {id} is an {ifc_class}') -def step_impl(context, id, ifc_class): - assert IfcFile.get().by_id(id).is_a(ifc_class) - -@then('the element {id} should not exist because {reason}') -def step_impl(context, id, reason): - assert not IfcFile.get().by_id(id) diff --git a/src/ifcblenderexport/junit/template.html b/src/ifcblenderexport/junit/template.html deleted file mode 100644 index 5a4b6ae2f9..0000000000 --- a/src/ifcblenderexport/junit/template.html +++ /dev/null @@ -1,51 +0,0 @@ - - -
- - - -- {{#is_success}}Success{{/is_success}}{{^is_success}}Failure{{/is_success}} - Tests passed: {{total_passes}} / {{total_steps}} - - Time taken: {{time}} seconds - -
-