Skip to content

Commit f9a7589

Browse files
committed
Emscripten: Add smoke test for using PyRepl in Chrome
Depends on: python/cpython#137004
1 parent 847d2ed commit f9a7589

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

master/custom/factories.py

Lines changed: 11 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,16 @@ 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+
"bash",
1400+
"run_test.sh",
1401+
],
1402+
env=compile_environ,
1403+
timeout=step_timeout(self.test_timeout),
1404+
workdir="Tools/wasm/emscripten/browser_test",
1405+
),
13951406
Clean(
13961407
name="Clean the builds",
13971408
command=["python3", "Tools/wasm/emscripten", "clean"],

0 commit comments

Comments
 (0)