# Add any tasks that are not dependent on files in the .PHONY list
.PHONY: dev test lint pip_dev

dev:
	python dev.py

test:
	py.test tests/ --cov images --cov-report term-missing

lint:
	flake8 images/ tests/

pip_dev:
	pip install -r requirements.txt
	pip install -r requirements-dev.txt
