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 67cef2c commit 92959a3Copy full SHA for 92959a3
.github/workflows/ci.yaml
@@ -53,7 +53,7 @@ jobs:
53
resolution: "lowest-direct"
54
env:
55
# Shared env variables for all the tests
56
- UV_RESOLUTION: '${{ matrix.resolution }}'
+ UV_RESOLUTION: "${{ matrix.resolution }}"
57
58
steps:
59
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
@@ -84,7 +84,7 @@ jobs:
84
- name: run conformance tests
85
# TODO: Debug stdin/stdout issues on Windows
86
if: ${{ !startsWith(matrix.os, 'windows-') }}
87
- run: uv run pytest ${{ matrix.coverage == 'cov' && '--cov=connectrpc --cov-report=xml' || '' }}
+ run: uv run pytest -rfEP ${{ matrix.coverage == 'cov' && '--cov=connectrpc --cov-report=xml' || '' }}
88
working-directory: conformance
89
90
- name: run tests with minimal dependencies
0 commit comments