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

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

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