Skip to content

Commit

Permalink
Remove unnecessary tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bennibolm committed Dec 11, 2024
1 parent 2d62525 commit f52cbfd
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 38 deletions.
70 changes: 35 additions & 35 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,52 +60,52 @@ jobs:
arch:
- x64
trixi_test:
- tree_part1
- tree_part2
- tree_part3
- tree_part4
- tree_part5
- tree_part6
- structured
- p4est_part1
- p4est_part2
- t8code_part1
- t8code_part2
# - tree_part1
# - tree_part2
# - tree_part3
# - tree_part4
# - tree_part5
# - tree_part6
# - structured
# - p4est_part1
# - p4est_part2
# - t8code_part1
# - t8code_part2
- t8code_fv
- unstructured_dgmulti
- parabolic
- paper_self_gravitating_gas_dynamics
- misc_part1
- misc_part2
- performance_specializations_part1
- performance_specializations_part2
# - unstructured_dgmulti
# - parabolic
# - paper_self_gravitating_gas_dynamics
# - misc_part1
# - misc_part2
# - performance_specializations_part1
# - performance_specializations_part2
- mpi
- threaded
# - threaded
include:
- version: '1.8'
os: ubuntu-latest
arch: x64
trixi_test: threaded_legacy
- version: '1.9'
os: ubuntu-latest
arch: x64
trixi_test: threaded_legacy
# - version: '1.8'
# os: ubuntu-latest
# arch: x64
# trixi_test: threaded_legacy
# - version: '1.9'
# os: ubuntu-latest
# arch: x64
# trixi_test: threaded_legacy
- version: '1.10'
os: macos-13
arch: x64
trixi_test: mpi
- version: '1.10'
os: macos-latest
arch: aarch64
trixi_test: threaded
# - version: '1.10'
# os: macos-latest
# arch: aarch64
# trixi_test: threaded
- version: '1.10'
os: windows-latest
arch: x64
trixi_test: mpi
- version: '1.10'
os: windows-latest
arch: x64
trixi_test: threaded
# - version: '1.10'
# os: windows-latest
# arch: x64
# trixi_test: threaded
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
Expand Down
6 changes: 3 additions & 3 deletions test/test_mpi.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ CI_ON_WINDOWS = (get(ENV, "GITHUB_ACTIONS", false) == "true") && Sys.iswindows()

@testset "MPI" begin
# TreeMesh tests
include("test_mpi_tree.jl")
# include("test_mpi_tree.jl")

# P4estMesh and T8codeMesh tests
include("test_mpi_p4est_2d.jl")
# include("test_mpi_p4est_2d.jl")
include("test_mpi_t8code_2d.jl")
include("test_mpi_t8code_fv_2d.jl")
if !CI_ON_WINDOWS # see comment on `CI_ON_WINDOWS` above
include("test_mpi_p4est_3d.jl")
# include("test_mpi_p4est_3d.jl")
include("test_mpi_t8code_3d.jl")
include("test_mpi_t8code_fv_3d.jl")
end
Expand Down

0 comments on commit f52cbfd

Please sign in to comment.