Skip to content

Commit 5b33c5c

Browse files
committed
Update contributing docs.
1 parent 985e05b commit 5b33c5c

File tree

1 file changed

+5
-13
lines changed

1 file changed

+5
-13
lines changed

Diff for: CONTRIBUTING.rst

+5-13
Original file line numberDiff line numberDiff line change
@@ -55,29 +55,21 @@ Ready to contribute? Here's how to set up `fuzzyfinder` for local development.
5555

5656
$ git clone [email protected]:your_name_here/fuzzyfinder.git
5757

58-
3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development::
59-
60-
$ mkvirtualenv fuzzyfinder
61-
$ cd fuzzyfinder/
62-
$ pip install -r dev-requirements.txt
63-
64-
4. Create a branch for local development::
58+
3. Create a branch for local development::
6559

6660
$ git checkout -b name-of-your-bugfix-or-feature
6761

6862
Now you can make your changes locally.
6963

70-
5. When you're done making changes, check that your changes pass the tests. This project uses py.test for testing and tox for running the tests on multiple versions of python::
64+
4. When you're done making changes, check that your changes pass the tests.
65+
This project uses tox for running the tests on multiple versions of python::
7166

72-
$ py.test
7367
$ tox
7468

75-
To get tox, just pip install tox into your virtualenv.
76-
77-
6. Commit your changes and push your branch to GitHub::
69+
5. Commit your changes and push your branch to GitHub::
7870

7971
$ git add .
8072
$ git commit -m "Your detailed description of your changes."
8173
$ git push origin name-of-your-bugfix-or-feature
8274

83-
7. Submit a pull request through the GitHub website.
75+
6. Submit a pull request through the GitHub website.

0 commit comments

Comments
 (0)