From 30cf195d36b4a3e39585fb4a048e10e3487956cc Mon Sep 17 00:00:00 2001 From: Alvaro Mariano Date: Fri, 3 Nov 2023 14:38:38 -0300 Subject: [PATCH] fix pylint --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0c9f3e0..52ab67d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,9 +23,9 @@ jobs: - name: Install dependencies run: poetry install - name: Run Pylint - run: poetry run pylint --rcfile=pyproject.toml notifications/ sample_website/ + run: poetry run -v -- pylint --rcfile=pyproject.toml notifications/ sample_website/ - name: Run Bandit - run: poetry run bandit -c pyproject.toml -r notifications/ sample_website/ + run: poetry run -v -- bandit -c pyproject.toml -r notifications/ sample_website/ test: