Codebase list pytest-factoryboy / 420d1ec5-6583-4e7b-bc9c-1162209a5a8f/main Makefile
420d1ec5-6583-4e7b-bc9c-1162209a5a8f/main

Tree @420d1ec5-6583-4e7b-bc9c-1162209a5a8f/main (Download .tar.gz)

Makefile @420d1ec5-6583-4e7b-bc9c-1162209a5a8f/mainraw · 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