From c779f1b5439db01cd2e79f1011bbc0f3fa6ad4b8 Mon Sep 17 00:00:00 2001 From: Jeff Curtis Date: Tue, 19 May 2026 19:12:41 -0500 Subject: [PATCH 1/4] change --out to --output in help text --- src/extract_aero_particles.F90 | 2 +- src/extract_aero_size.F90 | 2 +- src/extract_aero_time.F90 | 2 +- src/extract_env.F90 | 2 +- src/extract_gas.F90 | 2 +- src/extract_sectional_aero_size.F90 | 2 +- src/extract_sectional_aero_time.F90 | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/extract_aero_particles.F90 b/src/extract_aero_particles.F90 index 936dc3689..ecb25a017 100644 --- a/src/extract_aero_particles.F90 +++ b/src/extract_aero_particles.F90 @@ -117,7 +117,7 @@ subroutine print_help() write(*,'(a)') '' write(*,'(a)') 'options are:' write(*,'(a)') ' -h, --help Print this help message.' - write(*,'(a)') ' -o, --out Output filename.' + write(*,'(a)') ' -o, --output Output filename.' write(*,'(a)') '' write(*,'(a)') 'Examples:' write(*,'(a)') ' extract_aero_particles data_0001_00000001.nc' diff --git a/src/extract_aero_size.F90 b/src/extract_aero_size.F90 index dea730287..86428abec 100644 --- a/src/extract_aero_size.F90 +++ b/src/extract_aero_size.F90 @@ -183,7 +183,7 @@ subroutine print_help() write(*,'(a)') ' -N, --dmin Minimum diameter (m).' write(*,'(a)') ' -X, --dmax Maximum diameter (m).' write(*,'(a)') ' -b, --nbin Number of size bins.' - write(*,'(a)') ' -o, --out Output filename.' + write(*,'(a)') ' -o, --output Output filename.' write(*,'(a)') '' write(*,'(a)') 'Examples:' write(*,'(a)') ' extract_aero_size --num data_0001' diff --git a/src/extract_aero_time.F90 b/src/extract_aero_time.F90 index 4663c6c1e..5bf9f3621 100644 --- a/src/extract_aero_time.F90 +++ b/src/extract_aero_time.F90 @@ -141,7 +141,7 @@ subroutine print_help() write(*,'(a)') '' write(*,'(a)') 'options are:' write(*,'(a)') ' -h, --help Print this help message.' - write(*,'(a)') ' -o, --out Output filename.' + write(*,'(a)') ' -o, --output Output filename.' write(*,'(a)') '' write(*,'(a)') 'Examples:' write(*,'(a)') ' extract_aero_time data_0001' diff --git a/src/extract_env.F90 b/src/extract_env.F90 index 452c502cf..4e12f8a85 100644 --- a/src/extract_env.F90 +++ b/src/extract_env.F90 @@ -129,7 +129,7 @@ subroutine print_help() write(*,'(a)') '' write(*,'(a)') 'options are:' write(*,'(a)') ' -h, --help Print this help message.' - write(*,'(a)') ' -o, --out Output filename.' + write(*,'(a)') ' -o, --output Output filename.' write(*,'(a)') '' write(*,'(a)') 'Examples:' write(*,'(a)') ' extract_env data_0001' diff --git a/src/extract_gas.F90 b/src/extract_gas.F90 index 6caa8c4d6..4166be6d8 100644 --- a/src/extract_gas.F90 +++ b/src/extract_gas.F90 @@ -120,7 +120,7 @@ subroutine print_help() write(*,'(a)') '' write(*,'(a)') 'options are:' write(*,'(a)') ' -h, --help Print this help message.' - write(*,'(a)') ' -o, --out Output filename.' + write(*,'(a)') ' -o, --output Output filename.' write(*,'(a)') '' write(*,'(a)') 'Examples:' write(*,'(a)') ' extract_gas data_0001' diff --git a/src/extract_sectional_aero_size.F90 b/src/extract_sectional_aero_size.F90 index 22ef45388..12fd6db07 100644 --- a/src/extract_sectional_aero_size.F90 +++ b/src/extract_sectional_aero_size.F90 @@ -164,7 +164,7 @@ subroutine print_help() write(*,'(a)') ' -h, --help Print this help message.' write(*,'(a)') ' -n, --num Output number distribution.' write(*,'(a)') ' -m, --mass Output mass distribution.' - write(*,'(a)') ' -o, --out Output filename.' + write(*,'(a)') ' -o, --output Output filename.' write(*,'(a)') '' write(*,'(a)') 'Examples:' write(*,'(a)') ' extract_sectional_aero_size --num data_0001' diff --git a/src/extract_sectional_aero_time.F90 b/src/extract_sectional_aero_time.F90 index 391f9710f..a59337246 100644 --- a/src/extract_sectional_aero_time.F90 +++ b/src/extract_sectional_aero_time.F90 @@ -135,7 +135,7 @@ subroutine print_help() write(*,'(a)') '' write(*,'(a)') 'options are:' write(*,'(a)') ' -h, --help Print this help message.' - write(*,'(a)') ' -o, --out Output filename.' + write(*,'(a)') ' -o, --output Output filename.' write(*,'(a)') '' write(*,'(a)') 'Examples:' write(*,'(a)') ' extract_sectional_aero_time data_0001' From 0dfdfa7eee3b31dd29cedef07d6aaeabb689a99e Mon Sep 17 00:00:00 2001 From: Jeffrey Curtis Date: Wed, 27 May 2026 12:07:34 -0500 Subject: [PATCH 2/4] handle flaky codecov --- codecov.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 codecov.yml diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 000000000..58d1399af --- /dev/null +++ b/codecov.yml @@ -0,0 +1,10 @@ +coverage: + status: + project: + default: + target: auto + threshold: 1% + patch: + default: + target: auto + threshold: 1% From bd51979da3287ab9016d2e066546cb74137a4234 Mon Sep 17 00:00:00 2001 From: Jeffrey Curtis Date: Wed, 27 May 2026 12:09:06 -0500 Subject: [PATCH 3/4] eliminate codecov early reporting --- codecov.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/codecov.yml b/codecov.yml index 58d1399af..b83b2134b 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,3 +1,8 @@ +codecov: + notify: + after_n_builds: 4 + wait_for_ci: true + coverage: status: project: From febe6e207a958dc745f77433868f930d38664183 Mon Sep 17 00:00:00 2001 From: Jeffrey Curtis Date: Wed, 27 May 2026 12:30:54 -0500 Subject: [PATCH 4/4] eliminate after_n_builds in favor of better solution later --- codecov.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/codecov.yml b/codecov.yml index b83b2134b..58d1399af 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,8 +1,3 @@ -codecov: - notify: - after_n_builds: 4 - wait_for_ci: true - coverage: status: project: