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 204534d commit 38d04a3Copy full SHA for 38d04a3
src/py/reactpy/tests/test_core/test_serve.py
@@ -1,4 +1,5 @@
1
import asyncio
2
+import sys
3
from collections.abc import Sequence
4
from typing import Any
5
@@ -91,6 +92,7 @@ def Counter():
91
92
return reactpy.html.div({EVENT_NAME: handler, "count": count})
93
94
95
+@pytest.mark.skipif(sys.version_info < (3, 11), reason="ExceptionGroup not available")
96
async def test_dispatch():
97
events, expected_model = make_events_and_expected_model()
98
changes, send, recv = make_send_recv_callbacks(events)
0 commit comments