Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

skipping Linux test #5663

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/system/general/test_20_HFSS.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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))
Expand Down
Loading