5 Commits
dev ... master

Author SHA1 Message Date
c61e97a761 Merge branch 'master' of kmlabz:GoldenPogacsa/consumer-api
All checks were successful
continuous-integration/drone/push Build is passing
2020-05-14 22:42:06 +02:00
0b2cfbd760 Merge branch 'dev' 2020-05-14 22:41:58 +02:00
4b264b22fd test and coverage
All checks were successful
continuous-integration/drone/push Build is passing
2020-05-14 21:17:41 +02:00
89522c0536 Merge pull request 'merge docs' (#8) from dev into master
All checks were successful
continuous-integration/drone/push Build is passing
2020-05-14 21:17:05 +02:00
4e66533cbc Update 'README.rst'
All checks were successful
continuous-integration/drone/push Build is passing
2020-05-14 13:45:50 +02:00
2 changed files with 20 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:

View File

@ -10,3 +10,4 @@ implemented interfaces / functionalities:
* log
* sync
Produced by GoldenPogácsa Inc.