Refactor named workers test to avoid circular dependencies + free CI (#2212)

* Refactor named workers test to avoid circular dependencies + free CI
This commit is contained in:
Andrea Giammarchi
2024-10-08 14:58:22 +02:00
committed by GitHub
parent febbb031ac
commit a6b6dd8479
15 changed files with 79 additions and 84 deletions

View File

@@ -0,0 +1,16 @@
<!doctype html>
<html lang="en">
<head>
<title>py using mpy named worker</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<script type="module" src="../../../../dist/core.js"></script>
</head>
<body>
<script type="py" config="../config.toml">
from test import test
await test("micropython_version")
</script>
<script type="mpy" src="../worker.py" name="micropython_version" worker></script>
</body>
</html>