We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5515aec commit 7c7eee9Copy full SHA for 7c7eee9
.github/workflows/ci.yaml
@@ -126,6 +126,10 @@ jobs:
126
run: |
127
python -m pip install pytest-github-actions-annotate-failures
128
129
+ - name: Install beartype
130
+ run: |
131
+ python -m pip install pytest-beartype
132
+
133
- name: Install xarray
134
135
python -m pip install --no-deps -e .
@@ -152,6 +156,7 @@ jobs:
152
156
--cov=xarray
153
157
--cov-report=xml
154
158
--junitxml=pytest.xml
159
+ --beartype-packages=xarray
155
160
161
- name: Upload test results
162
if: always()
pyproject.toml
@@ -41,6 +41,7 @@ dev = [
41
"mypy",
42
"pre-commit",
43
"pytest",
44
+ "pytest-beartype",
45
"pytest-cov",
46
"pytest-env",
47
"pytest-xdist",
0 commit comments