Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 672 Bytes

CONTRIBUTING.md

File metadata and controls

26 lines (18 loc) · 672 Bytes

Contributing

Getting Started

  1. Install asdf
  2. Install the asdf Python plugin
asdf plugin add python https://github.com/danhper/asdf-python.git # Visit that repository to see installation prerequisites
  1. Run asdf install to install the version of Python specified in the .tool-versions file
  2. Run pip install -r requirements.txt to install the Python dependencies

Running the tests

python -m pytest

Running the linter

flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics