Codebase list pytest-factoryboy / 6c7c3159-2cb4-4bac-8bb9-efcccfd2f737/main Makefile
6c7c3159-2cb4-4bac-8bb9-efcccfd2f737/main

Tree @6c7c3159-2cb4-4bac-8bb9-efcccfd2f737/main (Download .tar.gz)

Makefile @6c7c3159-2cb4-4bac-8bb9-efcccfd2f737/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