Skip to content

Commit ac22796

Browse files
committed
Update
1 parent 96b4060 commit ac22796

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,10 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
moi_test_modules:
26-
- 'General'
27-
- 'Benchmarks'
26+
- 'General;Benchmarks;FileFormats;Nonlinear'
2827
- 'Bridges'
2928
- 'Bridges/Constraint'
30-
- 'Bridges/Objective'
31-
- 'Bridges/Variable'
32-
- 'FileFormats'
33-
- 'Nonlinear'
29+
- 'Bridges/Objective;Bridges/Variable'
3430
- 'Test'
3531
- 'Utilities'
3632
machine:

test/Bridges/runtests.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
using Test
88

99
@testset "$(file)" for file in readdir(@__DIR__; join = true)
10-
if !endswith(file, ".jl") || endswith(file, "runtests.jl")
10+
if !endswith(file, ".jl") ||
11+
(endswith(file, "runtests.jl") || endswith(file, "sdpa_models.jl"))
1112
continue
1213
end
1314
include(file)

0 commit comments

Comments
 (0)