Skip to content

Commit

Permalink
Use 'uv run' in "collect" CI job
Browse files Browse the repository at this point in the history
- Use 'uv run --no-sync' to avoid changing installed packages.
  • Loading branch information
khaeru committed Dec 23, 2024
1 parent 5b5e3e5 commit d90c510
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/sources.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
env:
SDMX_TEST_DATA: ./sdmx-test-data/
run: |
uv run \
uv run --no-sync \
pytest -m network --regex '.*Test${{ matrix.source }}:' \
--color=yes --durations=30 -rA --verbose \
--cov-report=xml \
Expand Down Expand Up @@ -124,7 +124,9 @@ jobs:
merge-multiple: true

- name: Compile report
run: python -m sdmx.testing.report
run: |
uv run --no-sync \
python -m sdmx.testing.report
- name: Upload report as a pages artifact
uses: actions/upload-pages-artifact@v3
Expand Down

0 comments on commit d90c510

Please sign in to comment.