From c1ba5b2adf12cbe4ea7a068e9f610130e54fe253 Mon Sep 17 00:00:00 2001 From: John Omotani Date: Thu, 8 Aug 2024 14:29:26 +0100 Subject: [PATCH 1/2] Comment out some less-useful debug checks ...to speed up the CI job. The commented out tests either don't test extra features compared to other runs that are kept, or only test unused features (like finite-difference derivatives) so that they are not important to test, and also not likely to change. --- .../debug_test/sound_wave_inputs.jl | 20 +++++++++---------- moment_kinetics/debug_test/wall_bc_inputs.jl | 10 +++++----- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/moment_kinetics/debug_test/sound_wave_inputs.jl b/moment_kinetics/debug_test/sound_wave_inputs.jl index 5814c5662..5bbbbb0d6 100644 --- a/moment_kinetics/debug_test/sound_wave_inputs.jl +++ b/moment_kinetics/debug_test/sound_wave_inputs.jl @@ -261,18 +261,18 @@ test_input_list = [ #test_input_finite_difference_split_1_moment, #test_input_finite_difference_split_2_moments, #test_input_finite_difference_split_3_moments, - test_input_finite_difference_cx0, + #test_input_finite_difference_cx0, #test_input_finite_difference_cx0_split_1_moment, #test_input_finite_difference_cx0_split_2_moments, #test_input_finite_difference_cx0_split_3_moments, - test_input_finite_difference_1D1V, - test_input_finite_difference_1D1V_split_1_moment, - test_input_finite_difference_1D1V_split_2_moments, + #test_input_finite_difference_1D1V, + #test_input_finite_difference_1D1V_split_1_moment, + #test_input_finite_difference_1D1V_split_2_moments, test_input_finite_difference_1D1V_split_3_moments, - test_input_finite_difference_cx0_1D1V, - test_input_finite_difference_cx0_1D1V_split_1_moment, - test_input_finite_difference_cx0_1D1V_split_2_moments, - test_input_finite_difference_cx0_1D1V_split_3_moments, + #test_input_finite_difference_cx0_1D1V, + #test_input_finite_difference_cx0_1D1V_split_1_moment, + #test_input_finite_difference_cx0_1D1V_split_2_moments, + #test_input_finite_difference_cx0_1D1V_split_3_moments, test_input_chebyshev, #test_input_chebyshev_split_1_moment, #test_input_chebyshev_split_2_moments, @@ -286,7 +286,7 @@ test_input_list = [ test_input_chebyshev_1D1V_split_2_moments, test_input_chebyshev_1D1V_split_3_moments, test_input_chebyshev_cx0_1D1V, - test_input_chebyshev_cx0_1D1V_split_1_moment, - test_input_chebyshev_cx0_1D1V_split_2_moments, + #test_input_chebyshev_cx0_1D1V_split_1_moment, + #test_input_chebyshev_cx0_1D1V_split_2_moments, test_input_chebyshev_cx0_1D1V_split_3_moments, ] diff --git a/moment_kinetics/debug_test/wall_bc_inputs.jl b/moment_kinetics/debug_test/wall_bc_inputs.jl index 632f904d9..7e7b2ef85 100644 --- a/moment_kinetics/debug_test/wall_bc_inputs.jl +++ b/moment_kinetics/debug_test/wall_bc_inputs.jl @@ -166,11 +166,11 @@ test_input_list = [ #test_input_finite_difference_simple_sheath, #test_input_finite_difference_1D1V, #test_input_finite_difference_simple_sheath_1D1V, - test_input_chebyshev, + #test_input_chebyshev, test_input_chebyshev_simple_sheath, - test_input_chebyshev_1D1V, - test_input_chebyshev_split1_1D1V, - test_input_chebyshev_split2_1D1V, - test_input_chebyshev_split3_1D1V, + #test_input_chebyshev_1D1V, + #test_input_chebyshev_split1_1D1V, + #test_input_chebyshev_split2_1D1V, + #test_input_chebyshev_split3_1D1V, test_input_chebyshev_simple_sheath_1D1V, ] From f530bca86a250db84a383cc30e9109feb904f07d Mon Sep 17 00:00:00 2001 From: John Omotani Date: Thu, 8 Aug 2024 21:20:55 +0100 Subject: [PATCH 2/2] Increase timeout for parallel_test CI job --- .github/workflows/parallel_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/parallel_test.yml b/.github/workflows/parallel_test.yml index 4118bc28f..b811cff94 100644 --- a/.github/workflows/parallel_test.yml +++ b/.github/workflows/parallel_test.yml @@ -10,7 +10,7 @@ permissions: jobs: test-ubuntu: runs-on: ubuntu-latest - timeout-minutes: 120 + timeout-minutes: 150 steps: - uses: actions/checkout@v4