Skip to content
Closed
Show file tree
Hide file tree
Changes from 3 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
3 changes: 2 additions & 1 deletion test/algorithms/test_EpsilonConstraint.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ end
function test_vOptLib_runtests()
model = MOA.Optimizer(HiGHS.Optimizer)
MOI.set(model, MOA.Algorithm(), MOA.EpsilonConstraint())
MOI.set(model, MOI.Silent(), true)
# MOI.set(model, MOI.Silent(), true)
MOI.set(model, MOA.SilentInner(), false)
Comment thread
odow marked this conversation as resolved.
Outdated
vOptLib.run_tests(model)
return
end
Expand Down
3 changes: 2 additions & 1 deletion test/algorithms/test_KirlikSayin.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ end
function test_vOptLib_runtests()
model = MOA.Optimizer(HiGHS.Optimizer)
MOI.set(model, MOA.Algorithm(), MOA.KirlikSayin())
MOI.set(model, MOI.Silent(), true)
# MOI.set(model, MOI.Silent(), true)
MOI.set(model, MOA.SilentInner(), false)
vOptLib.run_tests(model)
return
end
Expand Down
12 changes: 9 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@ for (root, dirs, files) in walkdir(@__DIR__)
end
end

import MultiObjectiveAlgorithms
import ParallelTestRunner
# import MultiObjectiveAlgorithms
# import ParallelTestRunner
#
# ParallelTestRunner.runtests(MultiObjectiveAlgorithms, ARGS; testsuite)

ParallelTestRunner.runtests(MultiObjectiveAlgorithms, ARGS; testsuite)
# Run the tests in serial. HiGHS intermittently segfaults on v1.10 when using
# ParallelTestRunner for some reason.
for file in keys(testsuite)
include(file)
end
Loading