We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 372a70d commit 3a5814cCopy full SHA for 3a5814c
1 file changed
.github/workflows/ci.yml
@@ -35,7 +35,10 @@ jobs:
35
run: uv sync --all-groups
36
37
- name: Run tests
38
- run: pytest
+ run: |
39
+ # Temporary workaround for a pytest failure.
40
+ uv pip install git+https://github.com/pytest-dev/pytest@main
41
+ pytest
42
env:
43
COVERAGE_COMMENT_E2E_GITHUB_TOKEN_USER_1: ${{ secrets.COVERAGE_COMMENT_E2E_GITHUB_TOKEN_USER_1 }}
44
COVERAGE_COMMENT_E2E_GITHUB_TOKEN_USER_2: ${{ secrets.COVERAGE_COMMENT_E2E_GITHUB_TOKEN_USER_2 }}
0 commit comments