From f0c1fcd6842ccaa35b45a59ced87ab098ad2dc74 Mon Sep 17 00:00:00 2001 From: Vladimir Diaz Date: Thu, 16 Nov 2017 17:39:16 -0500 Subject: [PATCH] Add Bandit to .travis.yml Signed-off-by: Vladimir Diaz --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index dc34a78f..2a2d388c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,9 +12,11 @@ env: before_script: - pip install -U pip wheel tox - pip install -U pip wheel pylint + - pip install -U pip wheel bandit script: - pylint tuf + - bandit -r tuf - tox after_success: @@ -26,3 +28,4 @@ branches: only: - develop - pylint + - bandit