Migrate dev tooling from pip-tools/tox to uv (#505) #1255
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Coverage" | |
| on: [push] | |
| jobs: | |
| coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v9.0.0 | |
| with: | |
| python-version: "3.14" | |
| - name: Install dependencies | |
| run: uv sync --group coverage | |
| - name: Run Tests and Record Coverage | |
| run: | | |
| uv run --group coverage coverage run -m pytest | |
| uv run --group coverage coverage html --omit "unittests/*" | |
| uv run --group coverage coverage report --fail-under 80 --omit "unittests/*" |