Skip to content
Merged
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/test_fmi.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
from pathlib import Path
import xml.etree.ElementTree as ET
import re
import platform

from pyfmi.fmi import (
FMUException,
Expand Down Expand Up @@ -1666,6 +1667,7 @@ def test_load_xml(self, fmu_path, test_class):
model = test_class(fmu_path, _connect_dll=False)
assert model.get_name() == "CoupledClutches"

@pytest.mark.skipif(platform.system() != "Linux", reason = "Only Linux binaries")
@pytest.mark.parametrize("fmu_path",
[
TEST_FMU_FMI2_ME_PATH / "testModels_noStateAssertFailureFunctionLocalVariable.fmu",
Expand Down