Skip to content

Commit a883d39

Browse files
committed
experiment
1 parent a865903 commit a883d39

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
strategy:
2121
matrix:
22-
os: [ubuntu-latest, windows-latest, macos-latest]
22+
#os: [ubuntu-latest, windows-latest, macos-latest]
23+
os: [windows-latest]
2324
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
2425
defaults:
2526
run:

src/textual/pilot.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,6 @@ async def _post_mouse_events(
447447

448448
if widget_at is None:
449449
widget_at, _ = app.get_widget_at(*offset)
450-
print("widget_at", repr(widget_at))
451450
event = mouse_event_cls(**kwargs)
452451
# Bypass event processing in App.on_event. Because App.on_event
453452
# is responsible for updating App.mouse_position, and because

tests/test_modal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ async def test_modal_pop_screen():
9191
# Pause to ensure the footer is fully composed to avoid flakiness in CI
9292
await pilot.pause()
9393
assert await app.wait_for_refresh()
94-
await pilot.pause(1) # silly test
94+
await pilot.pause()
9595
assert await pilot.click("FooterKey")
9696
assert await app.wait_for_refresh()
9797
assert isinstance(app.screen, QuitScreen)

0 commit comments

Comments
 (0)