From a67cbf329a60a2744491074c70cc36779f0b2b4a Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Mon, 2 Mar 2026 16:09:37 +1300 Subject: [PATCH] Use ParallelTestRunner on x86 --- .github/workflows/ci.yml | 3 +-- Project.toml | 2 +- test/runtests.jl | 8 +------- 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c48e8ed1d3..97d29c2e0b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,8 +26,7 @@ jobs: - 'General;Benchmarks;FileFormats;Nonlinear' - 'Bridges/General' - 'Bridges/Constraint' - - 'Bridges/Objective' - - 'Bridges/Variable' + - 'Bridges/Objective;Bridges/Variable' - 'Test' - 'Utilities' machine: diff --git a/Project.toml b/Project.toml index 76e5cc8aa2..3693b96bc5 100644 --- a/Project.toml +++ b/Project.toml @@ -36,7 +36,7 @@ LinearAlgebra = "1" MutableArithmetics = "1" NaNMath = "0.3, 1" OrderedCollections = "1" -ParallelTestRunner = "2.1.0" +ParallelTestRunner = "2.4.1" PrecompileTools = "1" Printf = "1" SparseArrays = "1" diff --git a/test/runtests.jl b/test/runtests.jl index 0bfe64cf5e..c72cf35162 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -46,10 +46,4 @@ import MathOptInterface import ParallelTestRunner import Test -if Sys.WORD_SIZE == 64 - ParallelTestRunner.runtests(MathOptInterface, ARGS; testsuite) -else - Test.@testset "$filename" for filename in keys(testsuite) - include(filename) - end -end +ParallelTestRunner.runtests(MathOptInterface, ARGS; testsuite)