From 60d85b4259696a9ba8b8d27305fe5f882186ba3f Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Thu, 9 Oct 2025 14:03:35 +0200 Subject: [PATCH] Skip ifcxml writing tests --- src/ifcopenshell-python/test/test_write.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ifcopenshell-python/test/test_write.py b/src/ifcopenshell-python/test/test_write.py index 352aea2538..e7a1f76b7c 100644 --- a/src/ifcopenshell-python/test/test_write.py +++ b/src/ifcopenshell-python/test/test_write.py @@ -40,9 +40,11 @@ class TestWrite: def test_write_ifcspf(self): self.assert_model_is_written("model.ifc") + @pytest.mark.skip(reason="IFCXML writing not supported") def test_write_ifcxml(self): self.assert_model_is_written("model.ifcXML") + @pytest.mark.skip(reason="IFCXML writing not supported") def test_write_ifc_zip_ifcxml_format(self): self.assert_model_is_written("model.ifcZIP", format=".ifcXML", zipped=True) @@ -58,9 +60,11 @@ class TestWrite: def test_write_anyextension_ifczip_ifcspf_format(self): self.assert_model_is_written("model.anyextension", format=".ifc", zipped=True) + @pytest.mark.skip(reason="IFCXML writing not supported") def test_write_anyextension_ifcxml_format(self): self.assert_model_is_written("model.anyextension", format=".ifcXML") + @pytest.mark.skip(reason="IFCXML writing not supported") def test_write_anyextension_ifczip_ifcxml_format(self): self.assert_model_is_written("model.anyextension", format=".ifcXML", zipped=True)