Skip to content

Commit

Permalink
Merge pull request #10449 from pradyunsg/tweak-dev-getting-started
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg authored Nov 7, 2021
2 parents e83ed83 + 1d0f4ea commit d81c65a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docs/html/development/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ You can then invoke your local source tree pip normally.

.. code-block:: shell
virtualenv .venv # You can also use "python -m venv .venv"
python -m venv .venv
source .venv/bin/activate
python -m pip install -e .
python -m pip --version
Expand All @@ -51,7 +51,7 @@ You can then invoke your local source tree pip normally.

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

.. code-block:: console
Expand Down

0 comments on commit d81c65a

Please sign in to comment.