Skip to content

Commit 69cc558

Browse files
authored
Merge pull request #7878 from onlinejudge95/bug/7683
Rephrases documentation
2 parents 8c95de1 + 4d0a55e commit 69cc558

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/html/development/getting-started.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,18 @@ pip's tests are written using the :pypi:`pytest` test framework, :pypi:`mock`
4949
and :pypi:`pretend`. :pypi:`tox` is used to automate the setup and execution of
5050
pip's tests.
5151

52-
To run tests locally, run:
52+
It is preferable to run the tests in parallel for better experience during development,
53+
since the tests can take a long time to finish when run sequentially.
5354

55+
To run tests:
5456
.. code-block:: console
5557
56-
$ tox -e py36
57-
58-
Generally, it can take a long time to run pip's test suite. To run tests in parallel,
59-
which is faster, run:
58+
$ tox -e py36 -- -n auto
6059
60+
To run tests without parallelization, run:
6161
.. code-block:: console
6262
63-
$ tox -e py36 -- -n auto
63+
$ tox -e py36
6464
6565
The example above runs tests against Python 3.6. You can also use other
6666
versions like ``py27`` and ``pypy3``.

0 commit comments

Comments
 (0)