Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 476 Bytes

CONTRIBUTING.md

File metadata and controls

26 lines (20 loc) · 476 Bytes

Contributing

Issues and Pull Requests are welcome :)

Requirements

  • Recommended a virtual env created:
  • Install dev requirements with make install-dev
  • Ready to contribute!

Running Tests

With the virtual env active:

# Only once
make install-dev
# Both linting and tests
make test
# Only tests
make unit
# Only code lint
make lint