Instead of manually defining dev deps, use requirements-dev.

This commit is contained in:
2021-07-03 19:15:20 +02:00
parent a19b53903b
commit 2f02a6dd80
2 changed files with 2 additions and 1 deletions

View File

@@ -19,7 +19,7 @@ steps:
image: python:3.8 image: python:3.8
commands: commands:
- python setup.py install - python setup.py install
- pip install pytest coverage codecov - pip install -r requirements-dev.txt
- coverage run -m pytest - coverage run -m pytest
- codecov -t $CODECOV_TOKEN - codecov -t $CODECOV_TOKEN
environment: environment:

View File

@@ -3,3 +3,4 @@
# dependencies for testing # dependencies for testing
pytest>=3.2.5 pytest>=3.2.5
codecov>=1.4.0 codecov>=1.4.0
coverage==5.5