Compare commits

...
This repository has been archived on 2020-09-24. You can view files and clone it, but cannot push or open issues or pull requests.

2 Commits

Author SHA1 Message Date
90b09b55ea coverage
Some checks failed
continuous-integration/drone/push Build is failing
2020-05-14 21:21:41 +02:00
d07eb28f58 test with curl
All checks were successful
continuous-integration/drone/push Build is passing
2020-05-08 22:41:22 +02:00
2 changed files with 12 additions and 3 deletions

View File

@ -35,6 +35,15 @@ steps:
- pip3 install --cache-dir='./.pipcache' -r requirements.txt
- pytest test.py
- name: coverage
image: python:3.8
environment:
PRODUCER_REDIS: cache
commands:
- pip3 install --cache-dir='./.pipcache' -r requirements.txt
- pip3 install --cache-dir='./.pipcache' coverage pytest
- coverage run -m pytest test.py
- coverage report -m
- name: rebuild-cache-with-filesystem
image: meltwater/drone-cache