Skip to content

Commit

Permalink
Get PYODIDE_ROOT from conftest instead of from pyodide_build
Browse files Browse the repository at this point in the history
  • Loading branch information
hoodmane committed Feb 28, 2025
1 parent 20e984d commit 9e0e787
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/test_asyncio.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from pytest_pyodide import run_in_pyodide

from pyodide.code import eval_code_async
from pyodide_build.build_env import get_pyodide_root
from conftest import PYODIDE_ROOT


def test_await_jsproxy(selenium):
Expand Down Expand Up @@ -471,5 +471,5 @@ async def f():
)

assert expected_message in re.sub("line [0-9]+", "line xxx", selenium.logs).replace(
str(get_pyodide_root()), "$PYODIDE_ROOT"
str(PYODIDE_ROOT), "$PYODIDE_ROOT"
)

0 comments on commit 9e0e787

Please sign in to comment.