Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 477 Bytes

CONTRIBUTING.md

File metadata and controls

17 lines (12 loc) · 477 Bytes

Testing

To run the tests, clone the repository, and then:

# Setup the virtual environment
virtualenv env
env/bin/activate
# windows users: env\Scripts\activate.bat
pip install -r requirements.txt
pip install -r requirements-dev.txt

# Run the tests
py.test

You can also use the excellent [tox][tox] testing tool to run the tests against all supported versions of Python and Django. Install tox globally, and then simply run:

tox