.PHONY: test format check
test:
	poetry run pytest --cov=twitch_airflow_components -v

format:
	poetry run black .
	poetry run isort . --profile black

check:
	poetry run mypy --ignore-missing-imports twitch_airflow_components
	poetry run flake8
	poetry run isort --check-only twitch_airflow_components
