From ed4652e3db2a309198f901f0d27a01dafb38a934 Mon Sep 17 00:00:00 2001 From: Devon Mackay Date: Tue, 3 Jul 2018 10:50:17 -0400 Subject: [PATCH] Add security analysis check to cibuild --- script/cibuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/cibuild b/script/cibuild index b90c5aae..bf5f51ee 100755 --- a/script/cibuild +++ b/script/cibuild @@ -10,3 +10,6 @@ cd "$(dirname "${0}")/.." # Run lint/style checks and unit tests script/test + +# Run static code analysis security check (exluding the tests subdir) +bandit -r . -x tests