Pull requests are welcome! Please make sure to follow coding style requirements and confirm all tests pass before opening a PR
Make sure you have both python 2.7 and 3.6 available as they are required for testing
curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash
Follow instructions to init pyenv and add it to your bashrc/zshrc file
$ pyenv install 2.7.14
$ pyenv install 3.6.3
$ pyenv global 2.7.14 3.6.3
$ virtualenv venv
$ source venv/bin/activate
$ pip install tox
$ tox
This will run all the existing tests, do not start coding before you solve any local configuration issues