.PHONY: env test ci lint

env:
	python3.6 -m venv env
	env/bin/pip install pip==20.3.4
	env/bin/pip install --use-deprecated=legacy-resolver .[dev]

test:
	env/bin/python3.6 -m pytest tests

ci:
	env/bin/python3.6 -m pytest tests/integration

lint:
	env/bin/flake8
