Codebase list pytest-factoryboy / eecf1f9c-a49c-45e7-9718-880edf3a96b7/upstream Makefile
eecf1f9c-a49c-45e7-9718-880edf3a96b7/upstream

Tree @eecf1f9c-a49c-45e7-9718-880edf3a96b7/upstream (Download .tar.gz)

Makefile @eecf1f9c-a49c-45e7-9718-880edf3a96b7/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