You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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::
65
59
66
60
$ git checkout -b name-of-your-bugfix-or-feature
67
61
68
62
Now you can make your changes locally.
69
63
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::
71
66
72
-
$ py.test
73
67
$ tox
74
68
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::
78
70
79
71
$ git add .
80
72
$ git commit -m "Your detailed description of your changes."
81
73
$ git push origin name-of-your-bugfix-or-feature
82
74
83
-
7. Submit a pull request through the GitHub website.
75
+
6. Submit a pull request through the GitHub website.
0 commit comments