We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c249d84 commit fcc7a7aCopy full SHA for fcc7a7a
1 file changed
pixi.toml
@@ -49,12 +49,14 @@ setuptools_scm = "*"
49
python-build = "*"
50
sphinx-autodoc-typehints = "*"
51
myst-nb = "*"
52
+pooch = "*"
53
54
[feature.dev.tasks]
55
lint = "ruff check tests xarray_subset_grid"
-test = "pytest tests/"
56
-test_all = "pytest --online tests/"
57
-test_cov = "pytest --cov=xarray_subset_grid tests"
+test = { cmd = ["pytest", "tests/"], depends-on = ["download"] }
+download = "python download_test_data.py"
58
+test_all = { cmd = "pytest --online tests/", depends-on = ["download"] }
59
+test_cov = { cmd = "pytest --cov=xarray_subset_grid tests", depends-on = ["download"] }
60
61
[feature.examples.dependencies]
62
matplotlib = "*"
0 commit comments