Skip to content

Commit b53079c

Browse files
authored
Use ParallelTestRunner on x86 (#2960)
1 parent 3553533 commit b53079c

3 files changed

Lines changed: 3 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ jobs:
2626
- 'General;Benchmarks;FileFormats;Nonlinear'
2727
- 'Bridges/General'
2828
- 'Bridges/Constraint'
29-
- 'Bridges/Objective'
30-
- 'Bridges/Variable'
29+
- 'Bridges/Objective;Bridges/Variable'
3130
- 'Test'
3231
- 'Utilities'
3332
machine:

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ LinearAlgebra = "1"
3636
MutableArithmetics = "1"
3737
NaNMath = "0.3, 1"
3838
OrderedCollections = "1"
39-
ParallelTestRunner = "2.1.0"
39+
ParallelTestRunner = "2.4.1"
4040
PrecompileTools = "1"
4141
Printf = "1"
4242
SparseArrays = "1"

test/runtests.jl

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,4 @@ import MathOptInterface
4646
import ParallelTestRunner
4747
import Test
4848

49-
if Sys.WORD_SIZE == 64
50-
ParallelTestRunner.runtests(MathOptInterface, ARGS; testsuite)
51-
else
52-
Test.@testset "$filename" for filename in keys(testsuite)
53-
include(filename)
54-
end
55-
end
49+
ParallelTestRunner.runtests(MathOptInterface, ARGS; testsuite)

0 commit comments

Comments
 (0)