experiment

This commit is contained in:
Will McGugan
2025-09-29 16:12:33 +01:00
parent a865903c78
commit a883d39d16
3 changed files with 3 additions and 3 deletions

View File

@@ -19,7 +19,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
#os: [ubuntu-latest, windows-latest, macos-latest]
os: [windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
defaults:
run:

View File

@@ -447,7 +447,6 @@ class Pilot(Generic[ReturnType]):
if widget_at is None:
widget_at, _ = app.get_widget_at(*offset)
print("widget_at", repr(widget_at))
event = mouse_event_cls(**kwargs)
# Bypass event processing in App.on_event. Because App.on_event
# is responsible for updating App.mouse_position, and because

View File

@@ -91,7 +91,7 @@ async def test_modal_pop_screen():
# Pause to ensure the footer is fully composed to avoid flakiness in CI
await pilot.pause()
assert await app.wait_for_refresh()
await pilot.pause(1) # silly test
await pilot.pause()
assert await pilot.click("FooterKey")
assert await app.wait_for_refresh()
assert isinstance(app.screen, QuitScreen)