Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
5809458
Per #3218, track output file regex strings and warn when a path is be…
georgemccabe Jul 2, 2026
23ac7f6
add pytest fixture to handle checking of logs for warnings that repor…
georgemccabe Jul 2, 2026
0a002cf
Per #3218, add unit tests for function that checks/warns when paths a…
georgemccabe Jul 2, 2026
9dcecaf
Per #3218, add unit tests for app that writes multiple output files t…
georgemccabe Jul 2, 2026
cc0a673
Per #3218, add unit tests to app that writes a single output file, te…
georgemccabe Jul 2, 2026
b48d4e8
add documentation to better describe how output paths are created fro…
georgemccabe Jul 2, 2026
59a3132
add log message to suggest how to resolve duplicate file overwrite is…
georgemccabe Jul 2, 2026
89a661c
add option to override default value to use if config wrapper or gene…
georgemccabe Jul 2, 2026
4cf0518
add config option to turn off output overwrite checks to prevent warn…
georgemccabe Jul 2, 2026
5d59176
bump pillow to fix security vulnerability
georgemccabe Jul 21, 2026
b9c000e
Enhance helper script to generate steps to 1) add config support for …
georgemccabe Jul 21, 2026
128f3c9
Per #3218, do not produce warnings if SKIP_IF_OUTPUT_EXISTS is set. A…
georgemccabe Jul 21, 2026
9fb56b5
Per #3218, add documentation for config variables used to silence war…
georgemccabe Jul 21, 2026
029c626
Merge branch 'develop' into feature_3218_warn_overwrite
georgemccabe Jul 22, 2026
70617b1
ignore relative URLs (start with ../) in linkcheck
georgemccabe Jul 22, 2026
57acc06
Per #2110, add option EXIT_ON_WARN to fail and exit when a warning is…
georgemccabe Jul 22, 2026
333743f
add EXIT_ON_WARN=True for all use case tests and ci-run-all-diff to s…
georgemccabe Jul 22, 2026
a4e0391
move pytest markers to pyproject.toml to prevent warnings when runnin…
georgemccabe Jul 22, 2026
03941d3
pass skip warning setting from ExtractTiles to RegridDataPlane
georgemccabe Jul 23, 2026
d614732
skip forecast lead looping for TCStat and fix run_once_per_init_or_va…
georgemccabe Jul 23, 2026
12ca9ef
add var name/level to output filenames to avoid overwrite of output f…
georgemccabe Jul 23, 2026
8b5da64
skip warnings when output is overwritten to prevent failure when over…
georgemccabe Jul 23, 2026
02411af
fix typo
georgemccabe Jul 23, 2026
a1f7856
support more runtime frequencies and change default to run once per i…
georgemccabe Jul 23, 2026
9933e71
pass skip warn output overwrite setting from PyEmbedIngest wrapper to…
georgemccabe Jul 23, 2026
eeef923
remove skip warning because new runtime frequency of ExtractTiles sho…
georgemccabe Jul 23, 2026
357a71e
skip running if output exists instead of skip warnings because the sa…
georgemccabe Jul 23, 2026
8ba9c7c
added logging handler to automatically raise exception to exit METplu…
georgemccabe Jul 23, 2026
3b2de2e
clean up formatting of warning logs
georgemccabe Jul 23, 2026
fb9234d
clean up almost duplicate warning messages
georgemccabe Jul 23, 2026
418353a
remove log_warning function and add subsequent info log to warning be…
georgemccabe Jul 23, 2026
2719ba7
update unit test to check for EXIT_ON_WARN config
georgemccabe Jul 23, 2026
db3e979
catch and handle exit-on-warn exception in wrapper initialization step
georgemccabe Jul 24, 2026
b9f6a19
set timing info to prevent misleading error
georgemccabe Jul 24, 2026
12d15cd
downgrade warnings to debug messages
georgemccabe Jul 24, 2026
71ac3b6
remove missing path and control member from inputs to prevent warnings
georgemccabe Jul 24, 2026
6e465a4
skip init times that don't exist to prevent warnings
georgemccabe Jul 24, 2026
1047554
rename variable to avoid deprecated config name that throws a warning
georgemccabe Jul 24, 2026
5ba56e2
skip known missing times to prevent warning
georgemccabe Jul 24, 2026
06d68ee
rename SKIP_WARN_OUTPUT_OVERWRITE to WARN_ON_DUPLICATE_OUTPUT
georgemccabe Jul 24, 2026
0e3f1fe
Per #2110, add config option WARN_ON_OUTPUT_EXISTS (default False) to…
georgemccabe Jul 24, 2026
3f33ae8
add EXIT_ON_WARN (global) and rename WARN_ON_* configs to WARN_IF_*
georgemccabe Jul 27, 2026
3ee9a39
remove ignore of relative paths in linkcheck because they could still…
georgemccabe Jul 27, 2026
8cf01c6
Merge branch 'feature_3218_test_exit_on_warn' into feature_3218_warn_…
georgemccabe Jul 27, 2026
bbddd7d
Per #2110, add unit tests for EXIT_ON_WARN behavior for both wrapper …
georgemccabe Jul 27, 2026
1a77efc
fix logic for WARN_IF_OUTPUT_EXISTS wrt SKIP_IF_OUTPUT_EXISTS so that…
georgemccabe Jul 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/parm/test_settings.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ FILE_LISTS_DIR = {STAGING_DIR}/file_lists

SCRUB_STAGING_DIR=False

EXIT_ON_WARN = True

# also set path to GempakToCF.jar for GEMPAK use cases
GEMPAKTOCF_JAR = /data/input/GempakToCF.jar

Expand Down
Loading
Loading