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