We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1cef68 commit c6d7de5Copy full SHA for c6d7de5
tests/test_unit_eval.py
@@ -1427,7 +1427,7 @@ async def func():
1427
"""
1428
import asyncio
1429
async def coro():
1430
- await asyncio.sleep(0.1)
+ await asyncio.sleep(1e-5)
1431
return "done"
1432
1433
await coro()
@@ -1482,6 +1482,19 @@ async def handler():
1482
""",
1483
True,
1484
],
1485
+ [
1486
+ """
1487
+@pyscript_compile
1488
+async def coro0():
1489
+ return 123
1490
+
1491
+async def coro1():
1492
+ return 456
1493
1494
+[await coro0(), await coro1()]
1495
+""",
1496
+ [123, 456],
1497
+ ],
1498
]
1499
1500
0 commit comments