add dead code command to Makefile

This commit is contained in:
Kenneth Kehl
2023-08-08 13:16:20 -07:00
parent d36c70ed16
commit 621c381de8

View File

@@ -59,6 +59,9 @@ py-test: ## Run python unit tests
pipenv run coverage report --fail-under=96
pipenv run coverage html -d .coverage_cache
.PHONY: dead-code
dead-code:
pipenv run vulture ./app --min-confidence=100
.PHONY: e2e-test
e2e-test: export NEW_RELIC_ENVIRONMENT=test