2023-04-25 06:24:22 +08:00

10 lines
164 B
Makefile

SHELL := /bin/bash
fmt:
@echo "Running formatter ..."
venv/bin/black .
.PHONY:tests
tests:
@echo "Running tests ..."
venv/bin/pytest tests/test_integration.py