Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 630 Bytes

CONTRIBUTING.md

File metadata and controls

37 lines (25 loc) · 630 Bytes

Contributing

Contributions are welcome, please follow the setup instructions below to get started.

Setup

Clone the repository

git clone https://github.com/torchbox/wagtail-jotform

Create a virtual environment and install the requirements

cd wagtail-jotform
python3 -m venv venv
source venv/bin/activate
pip install -e ".[testing,development]"

Install the pre-commit hooks

pre-commit install

Do some work, write some tests

Change some code, write some tests, and check that the tests pass

Run the tests

coverage run ./runtests.py
coverage report