Codebase list pytest-factoryboy / 945d68bb-0440-4799-b783-b82fa8849231/upstream Makefile
945d68bb-0440-4799-b783-b82fa8849231/upstream

Tree @945d68bb-0440-4799-b783-b82fa8849231/upstream (Download .tar.gz)

Makefile @945d68bb-0440-4799-b783-b82fa8849231/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