From 2b0c7e6696c1fc7ecf0e7634d1dab76d4dcadda3 Mon Sep 17 00:00:00 2001 From: Alexandre CHAZAL Date: Mon, 6 Dec 2021 20:47:24 +0100 Subject: [PATCH] fix(drone): added pip install to load from cache --- .drone.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.drone.yml b/.drone.yml index 0a44f92..6e95ef0 100644 --- a/.drone.yml +++ b/.drone.yml @@ -19,6 +19,7 @@ steps: - name: Lint - pylint image: python commands: + - pip install -r requirements.txt - pylint wsgi.py app/*.py volumes: - name: pip_cache @@ -27,6 +28,7 @@ steps: - name: Lint - flake8 image: python commands: + - pip install -r requirements.txt - flake8 wsgi.py app/*.py volumes: - name: pip_cache @@ -35,6 +37,7 @@ steps: - name: Security analysis with bandit image: python commands: + - pip install -r requirements.txt - bandit -r app/ volumes: - name: pip_cache