Skip to content

Latest commit

 

History

History
34 lines (20 loc) · 1.66 KB

contributing.md

File metadata and controls

34 lines (20 loc) · 1.66 KB

Contributing

Create an issue

Create an issue describing the motivation for your changes. Are you fixing a bug? Improving documentation? Optimizing some slow code?

Pull Requests without associated Issues may still be accepted, if the motivation is obvious. However, this will help speed up code review if there's any uncertainty.

Change the code

Create a fork and make your code changes.

Add tests

All pull requests must have 90% coverage in the changed code. Check the code coverage with your IDE or external tools.

Bugfixes should include a regression test which prevents that bug from being re-introduced in the future.

Update Documentation

Documentation for the project is stored in the docs directory. If your feature requires docs updates, those updates must be submitted in the same Pull Request as the code changes.

Open a Pull Request

When you're ready, submit a Pull Request against the master branch of our GitHub repository.

If the tests pass locally, but fail on your PR, update your fork with the latest code from master.