Skip to content

Commit d81c65a

Browse files
authored
Merge pull request #10449 from pradyunsg/tweak-dev-getting-started
2 parents e83ed83 + 1d0f4ea commit d81c65a

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

docs/html/development/getting-started.rst

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ You can then invoke your local source tree pip normally.
4242

4343
.. code-block:: shell
4444
45-
virtualenv .venv # You can also use "python -m venv .venv"
45+
python -m venv .venv
4646
source .venv/bin/activate
4747
python -m pip install -e .
4848
python -m pip --version
@@ -51,7 +51,7 @@ You can then invoke your local source tree pip normally.
5151

5252
.. code-block:: shell
5353
54-
virtualenv .venv # You can also use "py -m venv .venv"
54+
py -m venv .venv
5555
.venv\Scripts\activate
5656
py -m pip install -e .
5757
py -m pip --version
@@ -94,9 +94,10 @@ can select tests using the various ways that pytest provides:
9494
$ # Using keywords
9595
$ tox -e py36 -- -k "install and not wheel"
9696
97-
Running pip's test suite requires supported version control tools (subversion,
98-
bazaar, git, and mercurial) to be installed. If you are missing one of the VCS
99-
tools, you can tell pip to skip those tests:
97+
Running pip's entire test suite requires supported version control tools
98+
(subversion, bazaar, git, and mercurial) to be installed. If you are missing
99+
any of these VCS, those tests should be skipped automatically. You can also
100+
explicitly tell pytest to skip those tests:
100101

101102
.. code-block:: console
102103

0 commit comments

Comments
 (0)