Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: install dependencies
run: uv sync
run: uv sync --group ci

- name: Install test-only dependencies (Python 3.9 and 3.13)
if: matrix.python-version == '3.9' || matrix.python-version == '3.13'
run: uv sync --group tests
run: uv sync --group ci --group tests

- name: Unit tests
run: uv run pytest tests/
run: uv run pytest tests/ -n auto --dist loadfile
4 changes: 2 additions & 2 deletions .github/workflows/windows-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
python-version: "3.13"

- name: install dependencies
run: uv sync
run: uv sync --group ci

- name: Unit tests
run: uv run pytest tests/
run: uv run pytest tests/ -n auto --dist loadfile
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ dev = [
"uv>=0.6.2",
"pre-commit>=4.2.0,<5",
]
ci = [
"pytest-xdist>=3.5.0",
]
tests = [
"black>=25.9.0",
"jax>=0.4.30",
Expand Down
Loading