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 bde7668 commit 012a48fCopy full SHA for 012a48f
.github/workflows/build.yml
@@ -95,8 +95,12 @@ jobs:
95
with:
96
package-dir: "packages/basemap"
97
output-dir: "packages/basemap/dist"
98
+
99
- name: Run unittests
- run: pytest packages/basemap/
100
+ run: |
101
+ python -m pip install -e "packages/basemap[test]"
102
+ cd packages/basemap
103
+ python -m pytest
104
105
- uses: actions/upload-artifact@v4
106
packages/basemap/pyproject.toml
@@ -4,6 +4,9 @@ requires = [
4
'wheel',
5
'numpy == 2.0.0',
6
'cython >= 0.29.31, < 3.1',
7
- 'pytest'
8
]
9
build-backend = "setuptools.build_meta"
+[tool.setuptools.extras_require]
10
+test = [
11
+ "pytest"
12
+]
0 commit comments