Makefile 249 B

12345678910111213141516171819
  1. .PHONY: default lint format
  2. default: format
  3. ifeq ($(OS),Windows_NT)
  4. PYTHON?=py -3.12
  5. else
  6. PYTHON?=python3
  7. endif
  8. lint:
  9. $(PYTHON) -m black -t py312 --check --diff .
  10. format:
  11. $(PYTHON) -m black -t py312 .
  12. .PHONY: test
  13. test:
  14. $(PYTHON) -m pytest