Codebase list pytest-factoryboy / 6fb6e1dd-722e-45c0-887c-3d70c3d59177/upstream Makefile
6fb6e1dd-722e-45c0-887c-3d70c3d59177/upstream

Tree @6fb6e1dd-722e-45c0-887c-3d70c3d59177/upstream (Download .tar.gz)

Makefile @6fb6e1dd-722e-45c0-887c-3d70c3d59177/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