Skip to content

Commit

Permalink
Updated parasite test buckets from staging to release (#541)
Browse files Browse the repository at this point in the history
  • Loading branch information
nw20 authored May 24, 2024
1 parent 9da8f1b commit dc89c9c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions tests/test_pf7_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from malariagen_data.pf7 import Pf7


def setup_pf7(url="simplecache::gs://pf7_staging/", **storage_kwargs):
def setup_pf7(url="simplecache::gs://pf7_release/", **storage_kwargs):
if url.startswith("simplecache::"):
storage_kwargs["simplecache"] = dict(cache_storage="gcs_cache")
return Pf7(url, **storage_kwargs)
Expand All @@ -16,12 +16,12 @@ def setup_pf7(url="simplecache::gs://pf7_staging/", **storage_kwargs):
@pytest.mark.parametrize(
"url",
[
"gs://pf7_staging/",
"gcs://pf7_staging/",
"gs://pf7_staging",
"gcs://pf7_staging",
"simplecache::gs://pf7_staging/",
"simplecache::gcs://pf7_staging/",
"gs://pf7_release/",
"gcs://pf7_release/",
"gs://pf7_release",
"gcs://pf7_release",
"simplecache::gs://pf7_release/",
"simplecache::gcs://pf7_release/",
],
)
def test_sample_metadata(url):
Expand Down
14 changes: 7 additions & 7 deletions tests/test_pv4_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from malariagen_data.pv4 import Pv4


def setup_pv4(url="simplecache::gs://pv4_staging/", **storage_kwargs):
def setup_pv4(url="simplecache::gs://pv4_release/", **storage_kwargs):
if url.startswith("simplecache::"):
storage_kwargs["simplecache"] = dict(cache_storage="gcs_cache")
return Pv4(url, **storage_kwargs)
Expand All @@ -16,12 +16,12 @@ def setup_pv4(url="simplecache::gs://pv4_staging/", **storage_kwargs):
@pytest.mark.parametrize(
"url",
[
"gs://pv4_staging/",
"gcs://pv4_staging/",
"gs://pv4_staging",
"gcs://pv4_staging",
"simplecache::gs://pv4_staging/",
"simplecache::gcs://pv4_staging/",
"gs://pv4_release/",
"gcs://pv4_release/",
"gs://pv4_release",
"gcs://pv4_release",
"simplecache::gs://pv4_release/",
"simplecache::gcs://pv4_release/",
],
)
def test_sample_metadata(url):
Expand Down

0 comments on commit dc89c9c

Please sign in to comment.