Codebase list pytest-factoryboy / 88a1123f-652f-4df1-922f-ec120b6fcc6d/main Makefile
88a1123f-652f-4df1-922f-ec120b6fcc6d/main

Tree @88a1123f-652f-4df1-922f-ec120b6fcc6d/main (Download .tar.gz)

Makefile @88a1123f-652f-4df1-922f-ec120b6fcc6d/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