Codebase list pytest-factoryboy / 29b9919a-d365-4562-97df-71cb095a777b/upstream Makefile
29b9919a-d365-4562-97df-71cb095a777b/upstream

Tree @29b9919a-d365-4562-97df-71cb095a777b/upstream (Download .tar.gz)

Makefile @29b9919a-d365-4562-97df-71cb095a777b/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