Skip to content

Commit

Permalink
Merge pull request #1693 from messense/fix-emscripten
Browse files Browse the repository at this point in the history
Fix Emscripten test
  • Loading branch information
messense committed Jul 16, 2023
2 parents d2a4f0a + 3e7d0a0 commit 38334d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,9 @@ jobs:
test-emscripten:
name: Test Emscripten
if: github.event_name != 'pull_request'
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
env:
PYODIDE_VERSION: "0.23.0"
PYODIDE_VERSION: "0.23.4"
PYTHON_VERSION: "3.11.2"
NODE_VERSION: 18
steps:
Expand Down
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import nox


PYODIDE_VERSION = os.getenv("PYODIDE_VERSION", "0.23.0")
PYODIDE_VERSION = os.getenv("PYODIDE_VERSION", "0.23.4")
GITHUB_ACTIONS = os.getenv("GITHUB_ACTIONS")
GITHUB_ENV = os.getenv("GITHUB_ENV")

Expand Down Expand Up @@ -34,7 +34,7 @@ def setup_pyodide(session: nox.Session):
with session.chdir(tests_dir / "node_modules" / "pyodide"):
session.run(
"node",
"../prettier/bin-prettier.js",
"../prettier/bin/prettier.cjs",
"-w",
"pyodide.asm.js",
external=True,
Expand Down

0 comments on commit 38334d7

Please sign in to comment.