Skip to content

Commit

Permalink
test: use python3 instead of python
Browse files Browse the repository at this point in the history
On some platforms, such as macOS, the `python` command is no longer
available by default.
  • Loading branch information
lpinca committed Sep 8, 2022
1 parent 7f9cd60 commit 2459fc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-child-process-set-blocking.js
Expand Up @@ -25,7 +25,7 @@ const assert = require('assert');
const ch = require('child_process');

const SIZE = 100000;
const python = process.env.PYTHON || 'python';
const python = process.env.PYTHON || (common.isWindows ? 'python' : 'python3');

const cp = ch.spawn(python, ['-c', `print(${SIZE} * "C")`], {
stdio: 'inherit'
Expand Down

0 comments on commit 2459fc1

Please sign in to comment.