Codebase list pytest-factoryboy / 4d0d3f38-6bc1-4208-9928-811bc3405191/main Makefile
4d0d3f38-6bc1-4208-9928-811bc3405191/main

Tree @4d0d3f38-6bc1-4208-9928-811bc3405191/main (Download .tar.gz)

Makefile @4d0d3f38-6bc1-4208-9928-811bc3405191/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