From 2f77bab409a38cf89fc1885c5396bdcae235aaa6 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Thu, 15 Dec 2022 12:57:14 +0000 Subject: [PATCH] Extra long pause test This code is running just finally locally in tests, but is failing with: RuntimeError: Task > got Future 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... --- tests/test_binding_inheritance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_binding_inheritance.py b/tests/test_binding_inheritance.py index 9a5e9b10c..8417ee033 100644 --- a/tests/test_binding_inheritance.py +++ b/tests/test_binding_inheritance.py @@ -598,7 +598,7 @@ async def test_overlapping_priority_bindings() -> None: """Test an app stack with overlapping bindings.""" async with PriorityOverlapApp().run_test() as pilot: await pilot.press(*"0abcdef") - await pilot.pause(2 / 100) + await pilot.pause(5 / 100) assert pilot.app.pressed_keys == [ "widget_0", "app_a",