Tryna fix Drone CI

This commit is contained in:
3wc 2020-11-01 16:52:36 +02:00
parent e01f06423e
commit 0d24a8e5cc
1 changed files with 3 additions and 2 deletions

View File

@ -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