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 d677d66 commit d3bcdc2Copy full SHA for d3bcdc2
.github/workflows/playwright.yml
@@ -36,6 +36,6 @@ jobs:
36
run: |
37
python tools/install_pydeps.py
38
39
- - name: Run Suite X Times
+ - name: Run Playwright Tests
40
41
- python tools/runsuite_repeat.py
+ pytest -sv nbclassic/tests/end_to_end
nbclassic/tests/end_to_end/test_kernel_menu.py
@@ -49,4 +49,8 @@ def test_menu_items(notebook_frontend):
49
kernel_menu.click()
50
51
notebook_frontend.wait_for_selector(menu_item, EDITOR_PAGE).click()
52
- notebook_frontend.wait_for_condition(lambda: notebook_frontend.is_kernel_running())
+ notebook_frontend.wait_for_condition(
53
+ lambda: notebook_frontend.is_kernel_running(),
54
+ timeout=120,
55
+ period=5
56
+ )
0 commit comments