1#!/bin/bash 2 3pip install flake8 4 5# let the build fail for any flake8 warning 6flake8 . --exclude get-pip.py --max-complexity=13 --statistics 7