Skip to content

Commit

Permalink
HACK: Manually mark the cases we want to skip
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmundt committed Jul 19, 2023
1 parent d2e2929 commit dbd4242
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pyomo/solvers/tests/checks/test_pickle.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,13 @@ def return_test(self):
for key, value in generate_scenarios(lambda c: c.test_pickling):
model, solver, io = key
cls = driver[model]
# July 19, 2023: There is an issue with certain GAMS cases that is
# causing failures. This is not universal, however, so we cannot add
# the cases directly to testcases.py.
if (solver, io, value) == (
('gams', 'gms', 'LP_simple_kernel') or ('gams', 'python', 'LP_simple_kernel')
):
value.is_expected_failure = True

# Symbolic labels
test_name = "test_" + solver + "_" + io + "_symbolic_labels"
Expand Down

0 comments on commit dbd4242

Please sign in to comment.