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.
2 parents 3ebea24 + 3ffbbff commit 80de4c6Copy full SHA for 80de4c6
tests/xarray/test_samples.py
@@ -8,6 +8,8 @@
8
# nor does it submit to any jurisdiction.
9
10
11
+import os
12
+
13
import pytest
14
import requests
15
import xarray as xr
@@ -50,6 +52,9 @@ def _test_samples(n, check_skip=True):
50
52
51
53
54
@pytest.mark.parametrize("n", SAMPLES)
55
+# it would be nice to use a @pytest.mark.slow and configure this globally
56
+# this could be done when refactoring the tests, and setting up canary/nightly builds
57
+@pytest.mark.skipif(not os.environ.get("SLOW_TESTS"), reason="No SLOW_TESTS env var")
58
def test_samples(n):
59
_test_samples(n)
60
0 commit comments