summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2018-05-14 14:30:01 -0400
committerGitHub <noreply@github.com>2018-05-14 14:30:01 -0400
commit849d0616c3755588a60998ac286f8ff045eb1a95 (patch)
tree610e3f561246b4a2733949896b26cace5b6917e5
parentd11f10ed20c02a7522ef63b32431a1cdfc786c39 (diff)
parent9bdf2f7dde7eb6a6767663a3d5dfa1624f59559c (diff)
downloadpython-setuptools-git-849d0616c3755588a60998ac286f8ff045eb1a95.tar.gz
Merge pull request #1356 from MiriamSexton/pycon-sprint-docs-changes
Small fixes to Docs:Developer Guide
-rw-r--r--docs/developer-guide.txt10
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/developer-guide.txt b/docs/developer-guide.txt
index 85210055..25aaeaab 100644
--- a/docs/developer-guide.txt
+++ b/docs/developer-guide.txt
@@ -63,7 +63,7 @@ Source Code
Grab the code at Github::
- $ git checkout https://github.com/pypa/setuptools
+ $ git clone https://github.com/pypa/setuptools
If you want to contribute changes, we recommend you fork the repository on
Github, commit the changes to your repository, and then make a pull request
@@ -86,8 +86,12 @@ from this repository.
Testing
-------
-The primary tests are run using tox. To run the tests, first make
-sure you have tox installed, then invoke it::
+The primary tests are run using tox. To run the tests, first create the metadata
+needed to run the tests::
+
+ $ python bootstrap.py
+
+Then make sure you have tox installed, and invoke it::
$ tox