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

test:
	py.test tests/

test_cov:
	py.test tests/ --cov flask_executor_pde --cov-report term-missing

lint:
	flake8 flask_executor_pde/ tests/

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