Skip to content

Commit 96b4060

Browse files
committed
Update
1 parent 3aa9519 commit 96b4060

File tree

21 files changed

+99
-53
lines changed

21 files changed

+99
-53
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,14 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
moi_test_modules:
26-
- 'General;Benchmarks;FileFormats;Nonlinear'
26+
- 'General'
27+
- 'Benchmarks'
2728
- 'Bridges'
29+
- 'Bridges/Constraint'
30+
- 'Bridges/Objective'
31+
- 'Bridges/Variable'
32+
- 'FileFormats'
33+
- 'Nonlinear'
2834
- 'Test'
2935
- 'Utilities'
3036
machine:

test/Bridges/Bridges.jl

Lines changed: 0 additions & 26 deletions
This file was deleted.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Copyright (c) 2017: Miles Lubin and contributors
2+
# Copyright (c) 2017: Google Inc.
3+
#
4+
# Use of this source code is governed by an MIT-style license that can be found
5+
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.
6+
7+
using Test
8+
9+
@testset "$(file)" for file in readdir(@__DIR__; join = true)
10+
if !endswith(file, ".jl") || endswith(file, "runtests.jl")
11+
continue
12+
end
13+
include(file)
14+
end

test/Bridges/Objective/runtests.jl

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Copyright (c) 2017: Miles Lubin and contributors
2+
# Copyright (c) 2017: Google Inc.
3+
#
4+
# Use of this source code is governed by an MIT-style license that can be found
5+
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.
6+
7+
using Test
8+
9+
@testset "$(file)" for file in readdir(@__DIR__; join = true)
10+
if !endswith(file, ".jl") || endswith(file, "runtests.jl")
11+
continue
12+
end
13+
include(file)
14+
end

test/Bridges/Variable/runtests.jl

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Copyright (c) 2017: Miles Lubin and contributors
2+
# Copyright (c) 2017: Google Inc.
3+
#
4+
# Use of this source code is governed by an MIT-style license that can be found
5+
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.
6+
7+
using Test
8+
9+
@testset "$(file)" for file in readdir(@__DIR__; join = true)
10+
if !endswith(file, ".jl") || endswith(file, "runtests.jl")
11+
continue
12+
end
13+
include(file)
14+
end

test/Bridges/runtests.jl

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Copyright (c) 2017: Miles Lubin and contributors
2+
# Copyright (c) 2017: Google Inc.
3+
#
4+
# Use of this source code is governed by an MIT-style license that can be found
5+
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.
6+
7+
using Test
8+
9+
@testset "$(file)" for file in readdir(@__DIR__; join = true)
10+
if !endswith(file, ".jl") || endswith(file, "runtests.jl")
11+
continue
12+
end
13+
include(file)
14+
end

0 commit comments

Comments
 (0)