From db5fd350693704427813695bc09b50235ced3a79 Mon Sep 17 00:00:00 2001 From: svandenb-dev Date: Thu, 16 Jan 2025 10:29:11 +0100 Subject: [PATCH] skipping Linux test --- tests/system/general/test_20_HFSS.py | 2 ++ 1 file changed, 2 insertions(+) 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))