.PHONY: test format format_check
test:
	rm -rf dist
	poetry build -f wheel
	poetry run pytest --cov=conductor -v

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

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