From cf154cd09627cf3b3c92fe771a6843c803c29ecd Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 13 Apr 2020 15:57:36 +0200 Subject: [PATCH] install dev dependencies for docs generation --- .drone.jsonnet | 1 + .drone.yml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index add7082..7ec4473 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -186,6 +186,7 @@ local PipelineDocs = { name: 'generate', image: 'python:3.8', commands: [ + 'pip install -r dev-requirements.txt -qq', 'make doc', ], }, diff --git a/.drone.yml b/.drone.yml index 8ae6ec7..a8d900d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -211,6 +211,7 @@ steps: - name: generate image: python:3.8 commands: + - pip install -r dev-requirements.txt -qq - make doc - name: test @@ -305,6 +306,6 @@ depends_on: --- kind: signature -hmac: 6acc4879e65978ae67d1bb8d625f0227cabac334980ee22acdb9f4933d0e4459 +hmac: bfc2834ca02c31c299b1f63c967430cb59fc79ca55de8a74b2cf7184b0da715f ...