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

test:
	py.test tests/ -vv

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

lint:
	flake8 neoparse/ tests/

pip_dev:
	pip install -r requirements-dev.txt
