Skip to content

Commit f99c8fc

Browse files
feat: re-enable open file on Linux (#817)
Co-authored-by: pyansys-ci-bot <pyansys.github.bot@ansys.com>
1 parent cc6c4e6 commit f99c8fc

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

doc/changelog.d/817.fixed.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
feat: re-enable open file on Linux

tests/integration/test_design_import.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -193,12 +193,10 @@ def test_open_file(modeler: Modeler, tmp_path_factory: pytest.TempPathFactory):
193193
file = tmp_path_factory.mktemp("test_design_import") / "two_cars.scdocx"
194194
design.download(file)
195195

196-
# TODO: to be reactivated by https://github.com/ansys/pyansys-geometry/issues/799
197-
if modeler.client.backend_type != BackendType.LINUX_SERVICE:
198-
design2 = modeler.open_file(file)
196+
design2 = modeler.open_file(file)
199197

200-
# assert the two cars are the same, excepted for the ID, which should be different
201-
_checker_method(design, design2, True)
198+
# assert the two cars are the same, excepted for the ID, which should be different
199+
_checker_method(design, design2, True)
202200

203201
# Test HOOPS formats (Windows only)
204202
if modeler.client.backend_type != BackendType.LINUX_SERVICE:

0 commit comments

Comments
 (0)