From 69991340e67cbf70194882cd020549d8cfbf97fd Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Sat, 3 Jul 2021 19:06:37 +0200 Subject: [PATCH] fix: install codecov before running command --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 558990f..beaf5ae 100644 --- a/.drone.yml +++ b/.drone.yml @@ -19,6 +19,6 @@ steps: image: python:3.8 commands: - python setup.py install - - pip install pytest coverage + - pip install pytest coverage codecov - coverage run -m pytest - codecov -t $CODECOV_TOKEN