Skip to content

Commit aded9f8

Browse files
committed
Fixed CI
1 parent c09bd21 commit aded9f8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/shift_scheduling_sat_test.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
class ShiftSchedulingSatTest < Minitest::Test
44
def test_shift_scheduling_sat
5+
skip if ENV["RUBY_MEMCHECK_RUNNING"]
6+
57
num_employees = 8
68
num_weeks = 3
79
shifts = %w[O M A N]
@@ -205,7 +207,7 @@ def test_shift_scheduling_sat
205207
# status = solver.solve_with_solution_callback(model, solution_printer)
206208
status = solver.solve(model)
207209

208-
assert_includes [:feasible, :optimal, :unknown], status
210+
assert_includes [:feasible, :optimal], status
209211
assert_operator solver.objective_value, :<=, 400
210212

211213
_assignments = num_employees.times.map do |e|

0 commit comments

Comments
 (0)