Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.69 KB

CONTRIBUTING.md

File metadata and controls

49 lines (34 loc) · 1.69 KB

How to contribute

Bug reports in the issue tracker and pull requests are welcome.

Pull request

  1. Fork the repository at github.

  2. Clone your fork.

    git clone https://github.com/YOUR_GIT_USERNAME/cam_acq.git
    cd cam_acq
  3. Add the main repository as upstream.

    git remote add upstream https://github.com/CellProfiling/cam_acq.git
  4. Create a topic branch based off master branch.

    git checkout -b cool_new_feature master
  5. Make your changes in the new topic branch. New features should preferably be accompanied with new tests. PEP8 and PEP257 style should be followed. We use pylint and flake8 as code linters.

  6. Test with tox and make sure existing tests don't fail. Linting will also be checked when tox is run.

    pip install -r requirements_dev.txt
    tox
  7. Add and commit your work and describe the additions and or changes in the commit message. Use an editor for the commit message, not the command line. Try to keep the header of the commit message within 50 characters and the body within 72 characters per line. A blank line should separate the header from the body of the commit message. Markdown is cool.

    git add -A
    git commit
  8. Push you local changes to your fork.

    git push origin HEAD
  9. Create a pull request at github to the main cam_acq repository and target the master branch with your changes.

  10. Watch the build checks turn green ✅, and get the 👍 in the code review.