You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
pip install flake8
|
|
|
|
# let the build fail for any flake8 warning
|
|
flake8 . --exclude get-pip.py --max-complexity=13 --statistics
|