From 0ec2c7fd54fb3e8291b6a74362c589b01ce3b13b Mon Sep 17 00:00:00 2001 From: jo Date: Tue, 21 Mar 2023 14:29:19 +0100 Subject: [PATCH] test(api-client): allow linters failure --- api-client/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api-client/Makefile b/api-client/Makefile index aafa65422..a37a9b0df 100644 --- a/api-client/Makefile +++ b/api-client/Makefile @@ -5,9 +5,9 @@ include ../tools/python.mk PIP_INSTALL := \ --editable ../shared \ --editable .[dev] -PYLINT_ARG := libretime_api_client tests || true -MYPY_ARG := libretime_api_client tests || true -BANDIT_ARG := libretime_api_client || true +PYLINT_ARG := libretime_api_client tests +MYPY_ARG := libretime_api_client tests +BANDIT_ARG := libretime_api_client format: .format lint: .format-check .pylint .mypy .bandit