Skip to content

Commit d6ee7d8

Browse files
committed
doc: switch from python3 to python
1 parent f946aa2 commit d6ee7d8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

BUILDING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -318,28 +318,28 @@ If you are updating tests and want to run tests in a single test file
318318
(e.g. `test/parallel/test-stream2-transform.js`):
319319

320320
```text
321-
$ python3 tools/test.py test/parallel/test-stream2-transform.js
321+
$ python tools/test.py test/parallel/test-stream2-transform.js
322322
```
323323

324324
You can execute the entire suite of tests for a given subsystem
325325
by providing the name of a subsystem:
326326

327327
```text
328-
$ python3 tools/test.py child-process
328+
$ python tools/test.py child-process
329329
```
330330

331331
You can also execute the tests in a test suite directory
332332
(such as `test/message`):
333333

334334
```text
335-
$ python3 tools/test.py test/message
335+
$ python tools/test.py test/message
336336
```
337337

338338
If you want to check the other options, please refer to the help by using
339339
the `--help` option:
340340

341341
```text
342-
$ python3 tools/test.py --help
342+
$ python tools/test.py --help
343343
```
344344

345345
You can usually run tests directly with node:

0 commit comments

Comments
 (0)