-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
split tests into two parts for parallel CI
- Loading branch information
Showing
4 changed files
with
56 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,19 @@ | ||
comment: false | ||
# https://docs.codecov.io/docs/codecovyml-reference | ||
|
||
# We have | ||
# [number of parts] * [number of OS] | ||
# 2 * 3 | ||
# parallel jobs in ci.yml | ||
codecov: | ||
notify: | ||
after_n_builds: 6 | ||
comment: | ||
after_n_builds: 6 | ||
|
||
coverage: | ||
range: 70..95 | ||
round: down | ||
precision: 2 | ||
|
||
github_checks: | ||
annotations: false |
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,23 +1,32 @@ | ||
using Test | ||
|
||
@time @testset "Periodic Operators" begin include("periodic_operators_test.jl") end | ||
@time @testset "Non-Periodic Operators" begin include("SBP_operators_test.jl") end | ||
@time @testset "Dissipation Operators" begin include("dissipation_operators_test.jl") end | ||
@time @testset "Variable Coefficient Operators" begin include("var_coef_operators_test.jl") end | ||
@time @testset "Banded Matrices" begin include("banded_matrices_test.jl") end | ||
@time @testset "Fourier Operators" begin include("fourier_operators_test.jl") end | ||
@time @testset "Fourier Operators 2D" begin include("fourier_operators_2d_test.jl") end | ||
@time @testset "Legendre Operators" begin include("legendre_operators_test.jl") end | ||
@time @testset "Sum of Operators" begin include("sum_of_operators_test.jl") end | ||
@time @testset "Upwind Operators" begin include("upwind_operators_test.jl") end | ||
@time @testset "Coupling" begin include("coupling_test.jl") end | ||
@time @testset "Special Matrix Types" begin include("special_matrix_types.jl") end | ||
@time @testset "Conservation Laws" begin | ||
include("conservation_laws/burgers_test.jl") | ||
include("conservation_laws/cubic_test.jl") | ||
include("conservation_laws/variable_linear_advection_test.jl") | ||
include("conservation_laws/quartic_nonconvex_test.jl") | ||
end | ||
@time @testset "Second Order Equations" begin | ||
include("second_order_eqs/wave_eq_test.jl") | ||
const SBP_TEST = get(ENV, "SBP_TEST", "all") | ||
|
||
@time @testset "SummationByPartsOperators.jl tests" begin | ||
@time if SBP_TEST == "all" || SBP_TEST == "part1" | ||
@time @testset "Periodic Operators" begin include("periodic_operators_test.jl") end | ||
@time @testset "Non-Periodic Operators" begin include("SBP_operators_test.jl") end | ||
@time @testset "Dissipation Operators" begin include("dissipation_operators_test.jl") end | ||
@time @testset "Variable Coefficient Operators" begin include("var_coef_operators_test.jl") end | ||
@time @testset "Banded Matrices" begin include("banded_matrices_test.jl") end | ||
@time @testset "Fourier Operators" begin include("fourier_operators_test.jl") end | ||
@time @testset "Fourier Operators 2D" begin include("fourier_operators_2d_test.jl") end | ||
@time @testset "Legendre Operators" begin include("legendre_operators_test.jl") end | ||
@time @testset "Sum of Operators" begin include("sum_of_operators_test.jl") end | ||
@time @testset "Upwind Operators" begin include("upwind_operators_test.jl") end | ||
@time @testset "Special Matrix Types" begin include("special_matrix_types.jl") end | ||
end | ||
|
||
@time if SBP_TEST == "all" || SBP_TEST == "part2" | ||
@time @testset "Coupling" begin include("coupling_test.jl") end | ||
@time @testset "Conservation Laws" begin | ||
include("conservation_laws/burgers_test.jl") | ||
include("conservation_laws/cubic_test.jl") | ||
include("conservation_laws/variable_linear_advection_test.jl") | ||
include("conservation_laws/quartic_nonconvex_test.jl") | ||
end | ||
@time @testset "Second Order Equations" begin | ||
include("second_order_eqs/wave_eq_test.jl") | ||
end | ||
end | ||
end |