From d1c177e146550d63d61dc22b204df5560d1a1249 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 27 Dec 2020 14:22:23 +0200 Subject: [PATCH] .drone.yml: Add git to python container Now that I am installing my own fork of falcon-swagger-ui we need to have git so we can install it with pip. --- .drone.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 5b48c0c..2d73a7c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -24,7 +24,7 @@ steps: commands: - id - python -V - - apt update && apt install -y gcc + - apt update && apt install -y gcc git - pip install -r requirements-dev.txt - pytest @@ -71,6 +71,7 @@ steps: commands: - id - python -V + - apt update && apt install -y git - pip install -r requirements-dev.txt - pytest @@ -109,6 +110,7 @@ steps: commands: - id - python -V + - apt update && apt install -y git - pip install -r requirements-dev.txt - pytest @@ -147,6 +149,7 @@ steps: commands: - id - python -V + - apt update && apt install -y git - pip install -r requirements-dev.txt - pytest