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

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

lint:
	flake8 owsmysql/ tests/
	python -m pylint owsmysql tests

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