This is a Jazzband project. By contributing you agree to abide by the Contributor Code of Conduct and follow the guidelines.
Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
You can contribute in many ways:
Report bugs at https://github.com/jazzband/django-nose/issues.
If you are reporting a bug, please include:
- The version of django, nose, and django-nose you are using, and any other
applicable packages (
pip freeze
will show current versions) - Any details about your local setup that might be helpful in troubleshooting.
- Detailed steps to reproduce the bug.
When someone submits a pull request to fix your bug, please try it out and report if it worked for you.
Look through the GitHub issues for bugs. Anything untagged or tagged with "bug" is open to whoever wants to implement it.
Look through the GitHub issues for features. Anything untagged ot tagged with "feature" is open to whoever wants to implement it.
django-nose is built on nose, which supports plugins. Consider implementing your feature as a plugin, maintained by the community using that feature, rather than adding to the django-nose codebase.
django-nose could always use more documentation, whether as part of the official django-nose, as code comments, or even on the web in blog posts, articles, and such.
The best way to send feedback is to file an issue at https://github.com/jazzband/django-nose/issues.
If you are proposing a feature:
- Explain in detail how it would work.
- Keep the scope as narrow as possible, to make it easier to implement.
- Remember that this is a volunteer-driven project, and that contributions are welcome :)
Ready to contribute? Here's how to set up django-nose for local development.
Fork the django-nose repo on GitHub.
Clone your fork locally:
$ git clone [email protected]:your_name_here/django-nose.git
Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development:
$ mkvirtualenv django-nose $ cd django-nose/ $ pip install -r requirements.txt $ ./manage.py migrate
Create a branch for local development:
$ git checkout -b name-of-your-bugfix-or-feature
Now you can make your changes locally.
Make sure existing tests continue to pass with your new code:
$ make qa
When you're done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox:
$ make qa-all
Commit your changes and push your branch to GitHub:
$ git add . $ git commit -m "Your detailed description of your changes." $ git push origin name-of-your-bugfix-or-feature
Submit a pull request through the GitHub website.
Before you submit a pull request, check that it meets these guidelines:
- The pull request should be in a branch.
- The pull request should include tests.
- You agree to license your contribution under the BSD license.
- If the pull request adds functionality, the docs should be updated.
- Make liberal use of git rebase to ensure clean commits on top of master.
- The pull request should pass QA tests and work for supported Python / Django combinations. Check https://github.com/jazzband/django-nose/actions and make sure that the tests pass for all supported Python versions.
The django-nose testapp uses django-nose, so all of the features are available. To run a subset of tests:
$ ./manage.py test testapp/tests.py
To mark failed tests:
$ ./manage.py test --failed
To re-run only the failed tests:
$ ./manage.py test --failed