Codebase list pytest-factoryboy / master Makefile
master

Tree @master (Download .tar.gz)

Makefile @masterraw · history · blame

# create virtual environment
.env:
	virtualenv .env

# install all needed for development
develop: .env
	.env/bin/pip install -e . -r requirements-testing.txt tox

# clean the development envrironment
clean:
	-rm -rf .env