Skip to content
Merged
Changes from all commits
Commits
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
5 changes: 4 additions & 1 deletion tests/create/test_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,10 @@ def test_run(name: str, get_test_archive: GetTestArchive, load_source: LoadSourc

import requests

with patch("earthkit.data.from_source", load_source):
with (
patch("earthkit.data.from_source", load_source),
patch("anemoi.datasets.create.sources.mars.from_source", load_source),
):
from anemoi.datasets.create.creator import VERSION

recipe = os.path.join(HERE, name + ".yaml")
Expand Down
Loading