Skip to content
Open
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
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