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 774ee63 commit 6e2b051Copy full SHA for 6e2b051
.github/workflows/unit-tests.yaml
@@ -28,5 +28,9 @@ jobs:
28
- name: install dependencies
29
run: uv sync
30
31
+ - name: Install test-only dependencies (Python 3.13)
32
+ if: matrix.python-version == '3.13'
33
+ run: uv sync --group tests
34
+
35
- name: Unit tests
- run: uv run pytest tests/
36
+ run: uv run pytest tests/
pyproject.toml
@@ -85,6 +85,16 @@ dev = [
85
asyncio = [
86
"pytest-asyncio>=1.2.0",
87
]
88
+tests = [
89
+ "black>=25.9.0",
90
+ "jax>=0.4.30",
91
+ "numpy>=2.0.2",
92
+ "pandas>=2.3.3",
93
+ "pyrsistent>=0.20.0",
94
+ "scipy>=1.13.1",
95
+ "torch>=2.8.0",
96
+ "xarray>=2024.7.0",
97
+]
98
99
[tool.hatch.build.targets.sdist]
100
include = ["codeflash"]
0 commit comments