From 0d24a8e5cc5e3a884937c4079720667aa7bd4876 Mon Sep 17 00:00:00 2001 From: 3wc <3wc.git@doesthisthing.work> Date: Sun, 1 Nov 2020 16:52:36 +0200 Subject: [PATCH] Tryna fix Drone CI --- .drone.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index fbe200d..4036be7 100644 --- a/.drone.yml +++ b/.drone.yml @@ -11,12 +11,13 @@ steps: image: docker:dind commands: - apk add bats git bash - - bats test.bats + - bats tests - name: collect code coverage image: kcov/kcov:latest commands: - - kcov . abra || true + - apk add bats git bash + - kcov . bats tests || true - name: send code coverage report to codecov image: plugins/codecov