Skip to content

Commit 6c9926d

Browse files
authored
Emscripten: Add smoke test for using PyRepl in Chrome (#616)
Depends on: python/cpython#137004
1 parent d1e7d41 commit 6c9926d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

master/custom/factories.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1380,6 +1380,7 @@ def setup(self, **kwargs):
13801380
env=compile_environ,
13811381
),
13821382
Test(
1383+
name="Node full test suite",
13831384
command=[
13841385
"cross-build/wasm32-emscripten/build/python/python.sh",
13851386
"-m", "test",
@@ -1392,6 +1393,15 @@ def setup(self, **kwargs):
13921393
env=compile_environ,
13931394
timeout=step_timeout(self.test_timeout),
13941395
),
1396+
Test(
1397+
name="PyRepl in Chrome smoke test",
1398+
command=[
1399+
"run_test.sh",
1400+
],
1401+
env=compile_environ,
1402+
timeout=step_timeout(self.test_timeout),
1403+
workdir="Tools/wasm/emscripten/browser_test",
1404+
),
13951405
Clean(
13961406
name="Clean the builds",
13971407
command=["python3", "Tools/wasm/emscripten", "clean"],

0 commit comments

Comments
 (0)