From b3202204f3380645d0d338e656f7d8ada3347081 Mon Sep 17 00:00:00 2001 From: Lucas Terriel <44713216+Lucaterre@users.noreply.github.com> Date: Thu, 5 May 2022 11:47:04 +0200 Subject: [PATCH] Update CI.yml --- .github/workflows/CI.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a602fa2..8a18fc0 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -29,7 +29,11 @@ jobs: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Linter (pylint) run: | - find . -name '*.py' -exec pylint {} \; + find ./app/lib/IO_utils/ -name '*.py' -exec pylint {} \; + find ./app/lib/Ner/ -name '*.py' -exec pylint {} \; + find ./app/views/ -name '*.py' -exec pylint {} \; + find ./app/ -name 'config.py' -exec pylint {} \; + find ./app/ -name 'models.py' -exec pylint {} \; - name: CI tests (flask-pytest) run: | pytest ./app/tests/testProject.py