From 9bcbe70dbe4b4e34fc9a75f971fb30ed8a5be831 Mon Sep 17 00:00:00 2001 From: Jeremy Rose Date: Tue, 10 May 2022 14:26:53 -0700 Subject: [PATCH] test: run node specs with py3 (#34154) --- script/node-spec-runner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/node-spec-runner.js b/script/node-spec-runner.js index 340ff1d9f63b7..16c51af15db82 100644 --- a/script/node-spec-runner.js +++ b/script/node-spec-runner.js @@ -55,7 +55,7 @@ const getCustomOptions = () => { async function main () { const options = args.default ? defaultOptions : getCustomOptions(); - const testChild = cp.spawn('python', options, { + const testChild = cp.spawn('python3', options, { env: { ...process.env, ELECTRON_RUN_AS_NODE: 'true',