remove unneeded stuff
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Torma Kristóf 2021-06-12 20:36:37 +02:00
parent ad567ba2d1
commit 22f4ed3c8d
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
2 changed files with 0 additions and 19 deletions

View File

@ -3,16 +3,6 @@ type: docker
name: default
steps:
- name: static_analysis
image: "python:3.8"
commands:
- pip3 install --cache-dir='./.pipcache' pylint bandit mccabe
- pip3 install --cache-dir='./.pipcache' -r requirements.txt
- find . -name "*.py" -exec python3 -m py_compile '{}' \;
- find . -name "*.py" -exec pylint '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi
- 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: code-analysis
image: aosapps/drone-sonar-plugin
settings:
@ -21,14 +11,6 @@ steps:
sonar_token:
from_secret: SONAR_CODE
- name: sentry
image: tormachris/drone-sentry
settings:
sentry_project: ${DRONE_REPO_NAME}
sentry_domain: sentry.kmlabz.com
sentry_token:
from_secret: SENTRY_TOKEN
- name: kaniko
image: banzaicloud/drone-kaniko
settings:

View File

@ -1,7 +1,6 @@
#!/usr/bin/env python3
import logging
from flask import Flask
from flask_mqtt import logger
from flask_restful import Api
import sentry_sdk
from sentry_sdk.integrations.flask import FlaskIntegration