We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2764f17 commit c5c3a61Copy full SHA for c5c3a61
xyzservices/tests/test_providers.py
@@ -104,7 +104,13 @@ def test_free_providers(name):
104
provider = flat_free[name]
105
if "Stadia" in name:
106
pytest.skip("Stadia doesn't support tile download in this way.")
107
- get_test_result(provider)
+ elif "GeoportailFrance" in name:
108
+ try:
109
+ get_test_result(provider)
110
+ except ValueError:
111
+ pytest.xfail("GeoportailFrance API is unstable.")
112
+ else:
113
114
115
116
# test providers requiring API keys. Store API keys in GitHub secrets and load them as
0 commit comments