diff --git a/tests/system/general/test_20_HFSS.py b/tests/system/general/test_20_HFSS.py index b38d1f00ab1..b4dcd55db0f 100644 --- a/tests/system/general/test_20_HFSS.py +++ b/tests/system/general/test_20_HFSS.py @@ -26,6 +26,7 @@ import os import shutil +from ansys.aedt.core.generic.settings import is_linux import pytest from tests import TESTS_GENERAL_PATH @@ -1228,6 +1229,7 @@ def test_46_mesh_settings(self): assert self.aedtapp.mesh.initial_mesh_settings assert self.aedtapp.mesh.initial_mesh_settings.props + @pytest.mark.skipif(is_linux, reason="Crashes on Linux due to VM configuration.") def test_47_convert_near_field(self): example_project = os.path.join(TESTS_GENERAL_PATH, "example_models", "nf_test") assert os.path.exists(convert_nearfield_data(example_project, output_folder=self.local_scratch.path))