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

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

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