diff options
Diffstat (limited to 'ci/verify.sh')
-rwxr-xr-x | ci/verify.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ci/verify.sh b/ci/verify.sh index 333a05c..d1b0691 100755 --- a/ci/verify.sh +++ b/ci/verify.sh @@ -8,4 +8,8 @@ # http://www.apache.org/licenses/LICENSE-2.0 ############################################################################## -exit 0 +echo "Verifying code format and compliance..." + +if [ -x /usr/bin/flake8 ] ; then + flake8 storperf +fi |