holiday-cn/Makefile
2022-12-09 16:52:02 +08:00

20 lines
246 B
Makefile

.PHONY: default lint format
default: format
ifeq ($(OS),Windows_NT)
PYTHON?=py -3.8
else
PYTHON?=python3
endif
lint:
$(PYTHON) -m black -t py38 --check --diff .
format:
$(PYTHON) -m black -t py38 .
.PHONY: test
test:
$(PYTHON) -m pytest