From 5aaf1197b7b7c7c82ef706136103d2cd6bd65ac0 Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Tue, 18 Feb 2020 21:48:59 +0100 Subject: [PATCH] Make sure bash and curl are installed before using. --- .drone.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 27909b7..9d7b895 100644 --- a/.drone.yml +++ b/.drone.yml @@ -30,7 +30,9 @@ steps: commands: - pip install -r requirements.txt - py.test --cov-report=xml --cov=src test - - bash <(curl -s https://codecov.io/bash) + - apk add curl + - apk add bash + - bash -c "$(curl -s https://codecov.io/bash)" trigger: branch: - master