Skip to content

Commit

Permalink
skip if is linux
Browse files Browse the repository at this point in the history
  • Loading branch information
gmalinve committed Aug 7, 2024
1 parent f8d10e7 commit 8360126
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion _unittest/test_08_Primitives3D.py
Original file line number Diff line number Diff line change
Expand Up @@ -2006,7 +2006,9 @@ def test_92_detach_faces(self):
assert len(out_obj) == 3
assert all(isinstance(o, Object3d) for o in out_obj)

@pytest.mark.skipif(config["desktopVersion"] < "2024.1", reason="Feature not available until 2024.1")
@pytest.mark.skipif(
config["desktopVersion"] < "2024.1" or is_linux, reason="Feature not available until 2024.1 and in Linux"
)
def test_93_import_discovery(self):
self.aedtapp.insert_design("DiscoImport")
assert not self.aedtapp.modeler.objects
Expand Down

0 comments on commit 8360126

Please sign in to comment.