.PHONY: dev lint test clean

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

lint:
	flake8 dags/ plugins/ tests/

test:
	py.test tests/

clean:
	find . | grep -vE "^\./env" | grep -E "__pycache__|\.pyc|\.pyo$\" | xargs rm -rf
	rm -f .coverage
	rm -rf .pytest_cache
