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 1fa5fff commit 2b135d4Copy full SHA for 2b135d4
.github/workflows/tests.yaml
@@ -34,6 +34,20 @@ jobs:
34
- name: Run tests
35
run: uv run pytest --showlocals
36
37
+ coverage:
38
+ name: py${{ matrix.python }} unit tests
39
+ runs-on: ubuntu-latest
40
+ steps:
41
+ - uses: actions/checkout@v4
42
+ - name: Install uv
43
+ uses: astral-sh/setup-uv@v3
44
+ with:
45
+ enable-cache: true
46
+ - name: Install Python ${{ matrix.python }}
47
+ run: uv python install ${{ matrix.python }}
48
+ - name: Run tests
49
+ run: uv run pytest --cov --cov-fail-under=100
50
+
51
downstream-tests:
52
name: py${{ matrix.python }} ${{ matrix.downstream }} downstream unit tests
53
runs-on: ubuntu-latest
0 commit comments