test: skip ERA5 tests when CDS API is not configured#488
Merged
FabianHofmann merged 1 commit intomasterfrom Mar 13, 2026
Merged
test: skip ERA5 tests when CDS API is not configured#488FabianHofmann merged 1 commit intomasterfrom
FabianHofmann merged 1 commit intomasterfrom
Conversation
Fork PRs don't have access to repository secrets, so CDSAPI_URL is empty. When no cached cutout exists and the CDS API is not configured, skip the test instead of failing with MissingSchema.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes proposed in this Pull Request
Fork PRs (e.g. #483) fail on macOS and Windows CI because:
enableCrossOsArchive: true), which seems to be flaky.conftest.pycallcutout.prepare(), which tries to download ERA5 data from the CDS API.CDSAPI_URLis empty, causing aMissingSchemaerror.This PR introduces a
_prepare_era5_cutouthelper intest/conftest.pythat checks whether the cached cutout file exists before callingcutout.prepare(). If the file is missing andCDSAPI_URLis not set, the test is skipped with a clear message instead of erroring out. This makes fork PR CI runs robust regardless of cache availability.Checklist
doc.environment.yaml,environment_docs.yamlandsetup.py(if applicable).doc/release_notes.rstof the upcoming release is included.