From f108692031bf70c69333ae4ac72b6836ca2eede5 Mon Sep 17 00:00:00 2001 From: Etienne JODRY Date: Fri, 10 May 2024 15:48:47 +0200 Subject: [PATCH] Update pylint.yml --- .github/workflows/pylint.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 67925f3..8bd61cc 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -21,10 +21,9 @@ jobs: python -m pip install --upgrade pip pip install pylint pip install -r src/requirements/dev.txt - - name: Analysing the code with pylint - run: | - pylint -d W0221 $(git ls-files 'src/biodm/*.py') --exit-zero - name: Run tests run: | pytest src/biodm/tests/ - + - name: Analysing the code with pylint + run: | + pylint -d W0221 $(git ls-files 'src/biodm/*.py') --exit-zero