We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8cb38b commit eb36d40Copy full SHA for eb36d40
.github/workflows/emscripten.yml
@@ -62,6 +62,8 @@ jobs:
62
63
- name: Run Zarr tests for Pyodide
64
run: |
65
+ # Avoid missing asyncio plugin error from pytest, unavailable in Pyodide
66
+ if grep -q 'asyncio_mode = "auto"' "pyproject.toml"; then sed '/asyncio_mode = "auto"/d' "pyproject.toml" > temp && mv temp "pyproject.toml"; fi
67
pyodide venv .venv-pyodide
68
source .venv-pyodide/bin/activate
69
python -m pip install dist/*.whl
pyproject.toml
@@ -249,7 +249,8 @@ minversion = "7"
249
testpaths = ["tests"]
250
log_cli_level = "INFO"
251
xfail_strict = true
252
-# asyncio_mode = "auto"
+# Doesn't work under WASM, remove when running Pyodide test suite
253
+asyncio_mode = "auto"
254
doctest_optionflags = [
255
"NORMALIZE_WHITESPACE",
256
"ELLIPSIS",
0 commit comments