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