First pass at implemenation with pagerduty webhooks
This commit is contained in:
parent
b71b8d95ff
commit
80c6fbd7bb
15 changed files with 1419 additions and 0 deletions
14
Makefile
Normal file
14
Makefile
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue