Add Bandit to test

This commit is contained in:
nicolargo 2021-04-20 19:25:41 +02:00
parent ca3695ca4d
commit 2e56ccac42
2 changed files with 11 additions and 3 deletions

2
.bandit Normal file
View File

@ -0,0 +1,2 @@
[bandit]
exclude: ./docs,./glances/outputs/static/node_modules

View File

@ -5,7 +5,7 @@ name: test
on: [push]
jobs:
build:
test:
runs-on: ubuntu-latest
strategy:
@ -30,10 +30,16 @@ jobs:
- name: Lint with flake8
run: |
# Stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude=.git,./glances/outputs/static
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude=.git,./docs,./glances/outputs/static
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --exclude=.git,./glances/outputs/static
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --exclude=.git,./docs,./glances/outputs/static
- name: Unitary tests
run: |
python ./unitest.py
- name: Security issues with Bandit
uses: jpetrucciani/bandit-check@master
with:
#path: '-r --exit-zero --skip B104 ./glances/'
path: '-r --exit-zero --skip B104 ./glances/'