Skip to content

Commit 8a46440

Browse files
committed
uv sync --group=euler-validate --group=test
1 parent 868caa5 commit 8a46440

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
python-version: 3.13
2020
allow-prereleases: true
21-
- run: uv sync --dev
21+
- run: uv sync --test
2222
- name: Run tests
2323
# TODO: #8818 Re-enable quantum tests
2424
run: uv run pytest

.github/workflows/project_euler.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/setup-python@v5
2020
with:
2121
python-version: 3.x
22-
- run: uv sync --group=euler-validate,test
22+
- run: uv sync --group=euler-validate --group=test
2323
- run: uv run pytest --doctest-modules --cov-report=term-missing:skip-covered --cov=project_euler/ project_euler/
2424
validate-solutions:
2525
runs-on: ubuntu-latest
@@ -29,7 +29,7 @@ jobs:
2929
- uses: actions/setup-python@v5
3030
with:
3131
python-version: 3.x
32-
- run: uv sync --group=euler-validate,test
32+
- run: uv sync --group=euler-validate --group=test
3333
- run: uv run pytest scripts/validate_solutions.py
3434
env:
3535
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)