Codebase list pytest-factoryboy / 5631b318-4df9-45f2-b9f4-decd758c2912/main Makefile
5631b318-4df9-45f2-b9f4-decd758c2912/main

Tree @5631b318-4df9-45f2-b9f4-decd758c2912/main (Download .tar.gz)

Makefile @5631b318-4df9-45f2-b9f4-decd758c2912/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