Skip to content

Commit 2f77bab

Browse files
committed
Extra long pause test
This code is running just finally locally in tests, but is failing with: RuntimeError: Task <Task pending name='Task-279' coro=<MessagePump._process_messages() running at /home/runner/work/textual/textual/src/textual/message_pump.py:314>> got Future <Future pending> attached to a different loop in GitHub Actions. Pretty sure I saw this before, which made me add the pause in the first place. Given this seems to just be affecting the last test, from what I can tell, let's make the pause longer to see if that helps. I hate chasing action issues...
1 parent ad7c2e6 commit 2f77bab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_binding_inheritance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,7 @@ async def test_overlapping_priority_bindings() -> None:
598598
"""Test an app stack with overlapping bindings."""
599599
async with PriorityOverlapApp().run_test() as pilot:
600600
await pilot.press(*"0abcdef")
601-
await pilot.pause(2 / 100)
601+
await pilot.pause(5 / 100)
602602
assert pilot.app.pressed_keys == [
603603
"widget_0",
604604
"app_a",

0 commit comments

Comments
 (0)