
test: _require_venv
	pytest --cov

style:
	black .

# FIXME: https://github.com/pypa/pip/issues/11440
deps:
	pip install .[dev]
	pip uninstall -y teamcity-messages-extra

_require_venv:
	test -n "$(VIRTUAL_ENV)"
