Skip to content

Commit

Permalink
ci: fix pyodide build (#934)
Browse files Browse the repository at this point in the history
* ci: try to fix pyodide build

* tests: don't error if pytest can't create a cache

Signed-off-by: Henry Schreiner <[email protected]>

---------

Signed-off-by: Henry Schreiner <[email protected]>
  • Loading branch information
henryiii authored May 23, 2024
1 parent f735d73 commit 12de859
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/emscripten.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
python-version: "3.11"

- name: Install pyodide-build
run: pip install pyodide-build==0.23.4
run: pip install pyodide-build==0.25.1

- name: Compute emsdk version
id: compute-emsdk-version
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,10 @@ addopts = [
"--strict-config",
"--import-mode=importlib",
]
filterwarnings = ["error"]
filterwarnings = [
"error",
"default:could not create cache path:pytest.PytestCacheWarning",
]
xfail_strict = true
testpaths = ["tests"]
required_plugins = ["pytest-benchmark"]
Expand Down

0 comments on commit 12de859

Please sign in to comment.