Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 950 Bytes

File metadata and controls

47 lines (30 loc) · 950 Bytes

Welcome to Warsaw Data Api contributing guide

Thank you for investing your time in contributing to my project!

Getting started

Issues

Create a new issue

If you found problem or have a feature request for the package search if an issue already exists. If a related issue doesn't exist, you can open a new one.

Solve an issue

If you find an issue you would like to work on, you are welcome to open a PR with a fix.

How to make a change

  1. Fork the repository
  2. Make the changes
  3. Run the automatic tests
$ pip install poetry
$ poetry install
$ python -m unittest
  1. Install package locally and manually check your changes
$ poetry install
  1. Don't forget to have pre-commit hooks installed
$ pip install pre-commit && pre-commit install
  1. Commit your changes (in conventional commit convention) and create a PR.