Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 575 Bytes

README.md

File metadata and controls

23 lines (14 loc) · 575 Bytes

provoke

Foundation for building a web API for calling Python functions asynchronously.

Development

Start by creating a virtualenv in a clone of the repository:

virtualenv .venv
source .venv/bin/activate

Install the package in development mode. Note: Do not use sudo!

python setup.py develop

The easiest way to run the tests is with nosetests. You need to install it into the virtual environment, even if it is installed system-wide.

pip install -r test/requirements.txt
nosetests