-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #192 from ArnoStrouwen/CI
more CI
- Loading branch information
Showing
4 changed files
with
42 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,20 @@ | ||
using SafeTestsets | ||
using Test | ||
|
||
@testset "Common Utilities " begin | ||
@safetestset "Quality Assurance" begin | ||
include("qa.jl") | ||
end | ||
@safetestset "States" begin | ||
include("test_states.jl") | ||
end | ||
@testset "Common Utilities" begin | ||
@safetestset "Quality Assurance" begin include("qa.jl") end | ||
@safetestset "States" begin include("test_states.jl") end | ||
end | ||
|
||
@testset "Echo State Networks" begin | ||
@safetestset "ESN Input Layers" begin | ||
include("esn/test_input_layers.jl") | ||
end | ||
@safetestset "ESN Reservoirs" begin | ||
include("esn/test_reservoirs.jl") | ||
end | ||
@safetestset "ESN States" begin | ||
include("esn/test_states.jl") | ||
end | ||
@safetestset "ESN Train and Predict" begin | ||
include("esn/test_train.jl") | ||
end | ||
@safetestset "ESN Drivers" begin | ||
include("esn/test_drivers.jl") | ||
end | ||
@safetestset "Hybrid ESN" begin | ||
include("esn/test_hybrid.jl") | ||
end | ||
@safetestset "ESN Input Layers" begin include("esn/test_input_layers.jl") end | ||
@safetestset "ESN Reservoirs" begin include("esn/test_reservoirs.jl") end | ||
@safetestset "ESN States" begin include("esn/test_states.jl") end | ||
@safetestset "ESN Train and Predict" begin include("esn/test_train.jl") end | ||
@safetestset "ESN Drivers" begin include("esn/test_drivers.jl") end | ||
@safetestset "Hybrid ESN" begin include("esn/test_hybrid.jl") end | ||
end | ||
|
||
@testset "CA based Reservoirs" begin | ||
@safetestset "RECA" begin | ||
include("reca/test_predictive.jl") | ||
end | ||
@safetestset "RECA" begin include("reca/test_predictive.jl") end | ||
end |