Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
remi-braun committed Dec 2, 2024
1 parent 44d9616 commit d7ba85b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CI/SCRIPTS/test_satellites.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,10 @@ def _test_core(
prod.wgs84_extent()

if hasattr(prod, "_fallback_wgs84_extent"):
prod._fallback_wgs84_extent()
try:
prod._fallback_wgs84_extent()
except NotImplementedError:
pass

# Get the bands we want to stack / load
stack_bands = [band for band in possible_bands if prod.has_band(band)]
Expand Down

0 comments on commit d7ba85b

Please sign in to comment.