diff --git a/.drone.yml b/.drone.yml index fa542a6..62654b4 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,7 +7,6 @@ steps: image: python:3 commands: - pip3 install pylint bandit mccabe - - pip3 install -r requirements.txt - find . -name "*.py" -exec python3 -m py_compile '{}' \; - find . -name "*.py" -exec pylint '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi - find . -name "*.py" -exec python3 -m mccabe --min 3 '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi