From 2f02a6dd805bec6cd19e20b00cacc045c0a8ccc8 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Sat, 3 Jul 2021 19:15:20 +0200 Subject: [PATCH] Instead of manually defining dev deps, use requirements-dev. --- .drone.yml | 2 +- requirements-dev.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index cf3c47f..3c642dd 100644 --- a/.drone.yml +++ b/.drone.yml @@ -19,7 +19,7 @@ steps: image: python:3.8 commands: - python setup.py install - - pip install pytest coverage codecov + - pip install -r requirements-dev.txt - coverage run -m pytest - codecov -t $CODECOV_TOKEN environment: diff --git a/requirements-dev.txt b/requirements-dev.txt index f7492ca..296ab08 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -3,3 +3,4 @@ # dependencies for testing pytest>=3.2.5 codecov>=1.4.0 +coverage==5.5