Codebase list pytest-factoryboy / 1dd59cf5-ec91-495f-a0f0-204dd980fcfc/main Makefile
1dd59cf5-ec91-495f-a0f0-204dd980fcfc/main

Tree @1dd59cf5-ec91-495f-a0f0-204dd980fcfc/main (Download .tar.gz)

Makefile @1dd59cf5-ec91-495f-a0f0-204dd980fcfc/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