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 cf26936 commit 3ffe79dCopy full SHA for 3ffe79d
.github/workflows/test.yml
@@ -32,32 +32,3 @@ jobs:
32
33
- name: Run tests
34
run: uv run pytest tests/ -v --tb=short
35
-
36
- coverage:
37
- runs-on: ubuntu-latest
38
- needs: test
39
40
- steps:
41
- - uses: actions/checkout@v4
42
43
- - name: Set up Python
44
- uses: actions/setup-python@v4
45
- with:
46
- python-version: '3.11'
47
48
- - name: Install uv
49
- uses: astral-sh/setup-uv@v3
50
51
- - name: Install dependencies
52
- run: |
53
- uv sync --dev
54
- uv add --dev pytest-cov
55
56
- - name: Run tests with coverage
57
- run: uv run pytest tests/ --cov=src/explicit_implementation --cov-report=xml --cov-report=html
58
59
- - name: Upload coverage to Codecov
60
- uses: codecov/codecov-action@v3
61
62
- file: ./coverage.xml
63
- fail_ci_if_error: true
0 commit comments