Skip to content

Commit 2cfe470

Browse files
committed
Test: change test_runtime_config to use json instead of toml to see if stops failing on CI
1 parent 8d97dce commit 2cfe470

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

pyscriptjs/tests/integration/test_py_runtime_config.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,14 @@ def test_runtime_config(self, tar_location):
5454
</py-script>
5555
""",
5656
extra_head="""
57-
<py-config>
58-
runtimes:
59-
- src: "/pyodide/pyodide.js"
60-
name: pyodide-0.20.0
61-
lang: python
57+
<py-config type="json">
58+
{
59+
"runtimes": [{
60+
"src": "/pyodide/pyodide.js",
61+
"name": "pyodide-0.20.0",
62+
"lang": "python"
63+
}]
64+
}
6265
</py-config>
6366
""",
6467
)

0 commit comments

Comments
 (0)