test_ok1/Makefile

14 lines
233 B
Makefile
Raw Normal View History

# create virtual environment
PYTHON = python2.7
.env:
virtualenv .env -p $(PYTHON)
# install all needed for development
develop: .env
.env/bin/pip install -e .[test] tox
# clean the development envrironment
clean:
-rm -rf .env