Skip to content

Commit 70c087b

Browse files
committed
fix(ci): add pytest-rerunfailures to integration test dependencies
The @pytest.mark.flaky(reruns=2) decorator in integration tests requires pytest-rerunfailures to be installed. Without it, flaky tests silently skip retries and pytest emits unknown mark warnings.
1 parent bbf26d7 commit 70c087b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/integration-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ jobs:
161161
- name: Install dependencies
162162
run: |
163163
pip install -e .
164-
pip install --no-cache-dir pytest pytest-xdist pytest-order requests strands-agents uvicorn httpx starlette websockets ${{ matrix.extra-deps }}
164+
pip install --no-cache-dir pytest pytest-xdist pytest-order pytest-rerunfailures requests strands-agents uvicorn httpx starlette websockets ${{ matrix.extra-deps }}
165165
166166
- name: Run integration tests
167167
env:

0 commit comments

Comments
 (0)