Merge pull request #10449 from pradyunsg/tweak-dev-getting-started

This commit is contained in:
Pradyun Gedam 2021-11-07 09:57:31 +00:00 committed by GitHub
commit d81c65ace1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 5 deletions

View File

@ -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
@ -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
@ -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