From 7ea9fd2ff22c6782975f3d60a77e61e5b84ddaa9 Mon Sep 17 00:00:00 2001 From: grillazz Date: Sun, 30 May 2021 17:23:05 +0200 Subject: [PATCH] add safety checks --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 94c4f33..64a0b90 100644 --- a/Makefile +++ b/Makefile @@ -26,6 +26,10 @@ requirements: ## Refresh requirements.txt from pipfile.lock test: ## Run project tests docker-compose run --rm app pytest +.PHONY: safety +test: ## Check project and dependencies with safety https://github.com/pyupio/safety + docker-compose run --rm app safety check + .PHONY: lint lint: ## Linte project code. isort .