Skip to content

Commit

Permalink
Update CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucaterre authored May 5, 2022
1 parent 98434e7 commit b320220
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit b320220

Please sign in to comment.