chore(api): don't scan tests files with bandit (#1989)

This commit is contained in:
Jonas L 2022-07-25 21:20:45 +02:00 committed by GitHub
parent 6dfd4dd086
commit 2b973b2695
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ include ../tools/python.mk
PIP_INSTALL := --editable .[dev]
PYLINT_ARG := libretime_api
MYPY_ARG := libretime_api
BANDIT_ARG := libretime_api || true
BANDIT_ARG := --exclude '*/tests/*' libretime_api || true
format: .format
lint: .format-check .pylint .mypy .bandit