Skip to content

Commit 7f88d9d

Browse files
authored
add -v for integration pytest (#5448)
1 parent 9ba7c36 commit 7f88d9d

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/check_node_latest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ jobs:
3434
node-version: ${{ matrix.node-version }}
3535
- run: uv run playwright install --with-deps
3636
- run: |
37-
uv run pytest tests/test_node_version.py
38-
uv run pytest tests/integration --splits 2 --group ${{matrix.split_index}}
37+
uv run pytest tests/test_node_version.py -v
38+
uv run pytest tests/integration --splits 2 -v --group ${{matrix.split_index}}

.github/workflows/integration_app_harness.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ jobs:
5454
REDIS_URL: ${{ matrix.state_manager == 'redis' && 'redis://localhost:6379' || '' }}
5555
run: |
5656
uv run playwright install chromium
57-
uv run pytest tests/integration --retries 3 --maxfail=5 --splits 2 --group ${{matrix.split_index}}
57+
uv run pytest tests/integration --retries 3 -v --maxfail=5 --splits 2 --group ${{matrix.split_index}}

.github/workflows/performance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ jobs:
4040
uses: CodSpeedHQ/action@v3
4141
with:
4242
token: ${{ secrets.CODSPEED_TOKEN }}
43-
run: uv run pytest tests/benchmarks --codspeed
43+
run: uv run pytest -v tests/benchmarks --codspeed

0 commit comments

Comments
 (0)