Skip to content

Commit 62c152e

Browse files
rebalancing load across CI workflows to avoid timeouts (#1575)
1 parent 4b90b4d commit 62c152e

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
test-suite: "unit_tests/!(dynamics)"
129129
fail-fast: false
130130
runs-on: ${{ matrix.platform }}
131-
timeout-minutes: ${{ startsWith(matrix.platform, 'windows-') && 35 || 30 }}
131+
timeout-minutes: ${{ startsWith(matrix.platform, 'windows-') && 40 || 30 }}
132132
steps:
133133
- uses: actions/checkout@v4.1.6
134134
with:
@@ -213,7 +213,7 @@ jobs:
213213
matrix:
214214
platform: [ubuntu-24.04, macos-13, windows-latest]
215215
python-version: ["3.9", "3.12"]
216-
test-suite: [ "chemistry_freezing_extraterrestrial", "isotopes", "condensation_a", "condensation_b", "condensation_c", "coagulation", "breakup", "multi-process_a", "multi-process_b", "multi-process_c", "multi-process_d", "multi-process_e"]
216+
test-suite: [ "chemistry_extraterrestrial", "freezing", "isotopes", "condensation_a", "condensation_b", "condensation_c", "coagulation", "breakup", "multi-process_a", "multi-process_b", "multi-process_c", "multi-process_d", "multi-process_e"]
217217
fail-fast: false
218218
runs-on: ${{ matrix.platform }}
219219
timeout-minutes: 35

docs/bibliography.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -599,8 +599,8 @@
599599
"usages": [
600600
"PySDM/physics/freezing_temperature_spectrum/niemand_et_al_2012.py"
601601
],
602-
"label": "Niedermeier et al. 2014 (J. Atmos. Sci. 69)",
603-
"title": "A computationally efficient description of heterogeneous freezing: A simplified version of the Soccer ball model"
602+
"label": "Niemand et al. 2012 (J. Atmos. Sci. 69)",
603+
"title": "A Particle-Surface-Area-Based Parameterization of Immersion Freezing on Desert Dust Particles"
604604
},
605605
"https://doi.org/10.1002/2013GL058684": {
606606
"usages": [

tests/examples_tests/conftest.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@ def findfiles(path, regex):
1616

1717

1818
TEST_SUITES = {
19-
"chemistry_freezing_extraterrestrial": [
19+
"chemistry_extraterrestrial": [
2020
"Jaruga_and_Pawlowska_2018",
2121
"Kreidenweis_et_al_2003",
22+
"Toon_et_al_1980",
23+
],
24+
"freezing": [
2225
"Alpert_and_Knopf_2016",
2326
"Ervens_and_Feingold_2012",
2427
"Niedermeier_et_al_2014",
25-
"Toon_et_al_1980",
2628
],
2729
"isotopes": [
2830
"Bolot_et_al_2013",

0 commit comments

Comments
 (0)