Skip to content

Commit 09e61f7

Browse files
Apply suggestions from code review
Co-authored-by: Stan Ulbrych <stan@python.org>
1 parent 1a76f5e commit 09e61f7

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

getting-started/quick-reference.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Build Python
4949

5050
.. code-block:: shell
5151
52-
./configure --config-cache --with-pydebug && make -j8
52+
./configure --config-cache --with-pydebug && make -j$(sysctl -n hw.logicalcpu)
5353
5454
.. tab:: Windows
5555

@@ -70,13 +70,13 @@ Run the tests
7070

7171
.. code-block:: shell
7272
73-
./python -m test -j3
73+
./python -m test -j0
7474
7575
.. tab:: macOS
7676

7777
.. code-block:: shell
7878
79-
./python.exe -m test -j8
79+
./python.exe -m test -j0
8080
8181
.. note::
8282
:ref:`Most <mac-python.exe>` macOS systems use
@@ -87,7 +87,7 @@ Run the tests
8787

8888
.. code-block:: dosbatch
8989
90-
.\python.bat -m test -j3
90+
.\python.bat -m test -j0
9191
9292
9393
See also :ref:`how to write and run tests <run-write-tests>`.
@@ -159,8 +159,8 @@ For more detailed guidance, follow the :ref:`step-by-step pull request guide <pu
159159
Work on your pull request
160160
-------------------------
161161

162-
Make sure the
163-
:ref:`continuous integration checks on your Pull Request are green <keeping-ci-green>` (successful).
162+
Make sure the :ref:`continuous integration checks on your Pull
163+
Request are green <keeping-ci-green>` (successful).
164164

165165
Read and respond to reviewer comments on your pull request.
166166

0 commit comments

Comments
 (0)