The following will show you how to get started with local development
cd <project folder> && virtualenv -p <PATH TO PYTHON2> venv2
- activate the virtual env
pip install .[dev]
- Run tests
python -m unittest2 discover python2
cd <project folder> && virtualenv -p <PATH TO PYTHON3> venv3
- activate the virtual env
pip install .[dev]
- Run tests
python -m unittest discover python3