From adc5c362ebfe21fc2281f73c6937a43372933d24 Mon Sep 17 00:00:00 2001 From: marcsello Date: Fri, 29 May 2020 17:55:56 +0200 Subject: [PATCH] no more scikit-learn building in static_analysis stage lol --- .drone.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 2020d20..5d04a21 100644 --- a/.drone.yml +++ b/.drone.yml @@ -21,7 +21,6 @@ steps: image: "python:3.8" commands: - pip3 install --cache-dir='./.pipcache' pylint bandit mccabe - - pip3 install --cache-dir='./.pipcache' -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