We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1ec941 commit 0f1547dCopy full SHA for 0f1547d
test/parallel/test-child-process-set-blocking.js
@@ -25,7 +25,7 @@ const assert = require('assert');
25
const ch = require('child_process');
26
27
const SIZE = 100000;
28
-const python = process.env.PYTHON || 'python';
+const python = process.env.PYTHON || (common.isWindows ? 'python' : 'python3');
29
30
const cp = ch.spawn(python, ['-c', `print(${SIZE} * "C")`], {
31
stdio: 'inherit'
0 commit comments