logger.py/.drone.yml

29 lines
717 B
YAML
Raw Normal View History

2021-08-07 20:24:58 +02:00
kind: pipeline
type: docker
name: default
workspace:
path: /drone/src
steps:
2021-08-07 20:36:37 +02:00
- name: test
2021-08-07 20:24:58 +02:00
image: python:3.8-alpine
pull: if-not-exists
environment:
2021-08-07 20:36:37 +02:00
DEBUG_MODE: 'True'
2021-08-07 20:24:58 +02:00
TZ: 'Europe/Berlin'
commands:
- apk --no-cache add gcc musl-dev tzdata
- pip3 install --no-cache-dir -r requirements.txt
2021-08-07 20:36:37 +02:00
- echo "$DEBUG_MODE"
2021-08-07 20:38:13 +02:00
- |
python3 -c 'from loghandler import logger;
def main():
logger.debug("This is a Debug Message")
logger.info("This is a Info Message")
logger.warning("This is a Warning Message")
logger.error("This is a Error Message")
logger.critical("This is a Critical Message")
2021-08-07 20:24:58 +02:00
2021-08-07 20:38:13 +02:00
main()'