We welcome bug reports and pull requests from everyone! This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
- Fork it ( https://github.com/civisanalytics/dpwgan/fork ).
- Install it, with the development dependencies. See
README.md
. - Make sure you are able to run the test suite locally (
pytest dpwgan
). - Create a feature branch (
git checkout -b my-new-feature
). - Make your change. Don't forget tests.
- Make sure the test suite, including your new tests, passes
(
pytest dpwgan && flake8
). - Commit your changes (
git commit -am 'Add some feature'
). - Push to the branch (
git push origin my-new-feature
). - Create a new pull request.
- If the build fails, address any issues.
- All pull requests must include test coverage. If you’re not sure how to test your changes, feel free to ask for help.
- Contributions must conform to the guidelines encoded by
flake8
, based on PEP-8. - Don’t forget to add your change to the CHANGELOG. See Keep a CHANGELOG for guidelines.
Thank you for taking the time to contribute!