diff --git a/.github/workflows/emscripten.yaml b/.github/workflows/emscripten.yaml index 6d6646b9..f73e19d1 100644 --- a/.github/workflows/emscripten.yaml +++ b/.github/workflows/emscripten.yaml @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 33653a22..2b9fc666 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"]