From 43180e66c418f935ab0a8362dc867c5b9445c59e Mon Sep 17 00:00:00 2001 From: Peter Hamilton Date: Mon, 19 Oct 2015 16:20:13 -0400 Subject: [PATCH] Updating Travis CI configuration to invoke Bandit This change updates the Travis CI configuration to invoke the tox Bandit environment when running PyKMIP test suites. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index b57a192..e448af9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: python install: - pip install tox + - pip install bandit - pip install coveralls script: - tox @@ -10,6 +11,7 @@ env: - TOXENV=py27 - TOXENV=py33 - TOXENV=py34 + - TOXENV=bandit after_success: - coveralls