Codebase list pytest-factoryboy / 314218d3-7d11-4824-bd1d-7abd36e38f74/main Makefile
314218d3-7d11-4824-bd1d-7abd36e38f74/main

Tree @314218d3-7d11-4824-bd1d-7abd36e38f74/main (Download .tar.gz)

Makefile @314218d3-7d11-4824-bd1d-7abd36e38f74/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