Skip to content

Commit

Permalink
Change order of decorators
Browse files Browse the repository at this point in the history
Minor change to improve style of decorated test functions.
  • Loading branch information
santisoler committed May 21, 2024
1 parent 5bd5a67 commit 50c29b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pooch/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,12 +624,12 @@ def test_stream_download(fname):
check_tiny_data(str(destination))


@pytest.mark.network
@pytest.mark.parametrize(
"url",
[FIGSHAREURL, ZENODOURL, DATAVERSEURL],
ids=["figshare", "zenodo", "dataverse"],
)
@pytest.mark.network
def test_load_registry_from_doi(url):
"""Check that the registry is correctly populated from the API"""
with TemporaryDirectory() as local_store:
Expand Down

0 comments on commit 50c29b7

Please sign in to comment.