Skip to content

Commit 359900c

Browse files
committed
Add retries to flaky test
1 parent 7851978 commit 359900c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/playwright/shiny/bookmark/chat/client_state/test_bookmark_chat.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
import re
22

3+
import pytest
34
from playwright.sync_api import Page
45

56
from shiny.playwright.controller import Chat
67
from shiny.run import ShinyAppProc
78

89

9-
def test_bookmark_chatlas(page: Page, local_app: ShinyAppProc):
10+
@pytest.mark.flaky(reruns=3, reruns_delay=1)
11+
def test_bookmark_chat(page: Page, local_app: ShinyAppProc):
1012

1113
page.goto(local_app.url)
1214

0 commit comments

Comments
 (0)