Merge branch 'master' of kmlabz:GoldenPogacsa/consumer-api
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Pünkösd Marcell 2020-05-14 22:42:06 +02:00
commit c61e97a761
1 changed files with 19 additions and 0 deletions

View File

@ -28,6 +28,25 @@ steps:
- find . -name "*.py" -exec python3 -m mccabe --min 3 '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi
- bandit -r . + || if [ $? -eq 1 ]; then echo "you fail"; fi
- name: unit_test
image: python:3.8
environment:
PRODUCER_REDIS: cache
commands:
- pip3 install --cache-dir='./.pipcache' -r requirements.txt
- pip3 install --cache-dir='./.pipcache' -r requirements_dev.txt
- pytest
- name: coverage
image: python:3.8
environment:
PRODUCER_REDIS: cache
commands:
- pip3 install --cache-dir='./.pipcache' -r requirements.txt
- pip3 install --cache-dir='./.pipcache' -r requirements_dev.txt
- coverage run -m pytest
- coverage report -m
- name: build-app
image: banzaicloud/drone-kaniko
settings: