Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 375 Bytes

TESTING.md

File metadata and controls

20 lines (14 loc) · 375 Bytes

Testing

Local Tests

Our local testing consists of unit tests, flake8 for linting and mypy for type enforcement.

To automatically run all of these, install Tox using

pip3 install tox

and run the tox command in the main directory.

To run a given kind of test individually, run:

tox -e [tests, flake8, mypy]

with your category of choice.