Skip to content

Commit 63c86ce

Browse files
authored
Remove --parallel=false workaround in the tests (#346)
This was originally needed because of a thread-safety bug in HiGHS
1 parent 5f3e3b7 commit 63c86ce

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

test/runtests.jl

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import HiGHS
77
import ParallelTestRunner
8-
import Test
98

109
is_test_file(f) = startswith(f, "test_") && endswith(f, ".jl")
1110

@@ -16,10 +15,4 @@ for (root, dirs, files) in walkdir(@__DIR__)
1615
end
1716
end
1817

19-
if "--parallel=false" in ARGS
20-
Test.@testset "$file" for file in keys(testsuite)
21-
include(file)
22-
end
23-
else
24-
ParallelTestRunner.runtests(HiGHS, ARGS; testsuite)
25-
end
18+
ParallelTestRunner.runtests(HiGHS, ARGS; testsuite)

0 commit comments

Comments
 (0)