Skip to content

Commit

Permalink
Tolerate sporadic HTTP 500 in TestISTAT.test_gh_75
Browse files Browse the repository at this point in the history
  • Loading branch information
khaeru committed Dec 17, 2024
1 parent 7a055b3 commit 06d6f5a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion sdmx/tests/test_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,11 @@ def test_gh_75(self, client):
client.data(df_id, key="A.001001+001002.AUTP.ALL.ALL.1")

# Use a dict() key to force Client to make a sub-query for the DSD
client.data(df_id, key=data_key)
try:
client.data(df_id, key=data_key)
except HTTPError as e:
log.info(f"Known, sporadic {e!r}")
pass

@pytest.mark.network
def test_gh_104(self, client):
Expand Down

0 comments on commit 06d6f5a

Please sign in to comment.