Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 488 Bytes

CONTRIBUTING.MD

File metadata and controls

20 lines (18 loc) · 488 Bytes

Getting Started with Local Development

The following will show you how to get started with local development

Python 2

  1. cd <project folder> && virtualenv -p <PATH TO PYTHON2> venv2
  2. activate the virtual env
  3. pip install .[dev]
  4. Run tests
python -m unittest2 discover python2

Python 3

  1. cd <project folder> && virtualenv -p <PATH TO PYTHON3> venv3
  2. activate the virtual env
  3. pip install .[dev]
  4. Run tests
python -m unittest discover python3