14 lines
No EOL
260 B
Makefile
14 lines
No EOL
260 B
Makefile
POETRY ?= poetry run
|
|
SRC := ops_bot
|
|
TESTS := tests
|
|
fmt:
|
|
$(POETRY) black $(SRC)
|
|
$(POETRY) isort --profile black $(SRC)
|
|
lint:
|
|
$(POETRY) flake8 $(SRC)
|
|
$(POETRY) bandit --silent --recursive $(SRC)
|
|
types:
|
|
$(POETRY) mypy $(SRC)
|
|
|
|
test:
|
|
$(POETRY) pytest $(TESTS)
|