Skip to content

Commit bcd8d91

Browse files
committed
skip tests with HiGHS based on .gz files
1 parent db1834d commit bcd8d91

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/mip_files_test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ def test_mip_file(solver: str, instance: str):
139139

140140
max_dif = max(max(abs(ub), abs(lb)) * 0.01, TOL)
141141

142+
if solver == HIGHS and instance.endswith(".gz"):
143+
pytest.skip("HiGHS does not support .gz files.")
144+
142145
m.read(instance)
143146
if bas_file:
144147
m.verbose = True

0 commit comments

Comments
 (0)