Skip to content

Commit

Permalink
fix: skip testing on windows for the moment
Browse files Browse the repository at this point in the history
  • Loading branch information
gayuso committed Dec 5, 2024
1 parent 518f3fd commit 2735847
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@
from conftest import ON_CI, TestClass


if os.name == "nt":
# it keeps failing in MAPDL manually compiled version
pytest.skip("skipping on windows", allow_module_level=True)

@pytest.fixture(scope="session")
def db(mapdl):
from ansys.api.mapdl import __version__ as api_version
Expand Down

0 comments on commit 2735847

Please sign in to comment.