diff --git a/.drone.yml b/.drone.yml index c6ac43d..15cb1fc 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,4 +1,3 @@ - kind: pipeline type: docker name: default @@ -9,4 +8,10 @@ steps: commands: - pip install -r requirements.txt - python -m unittest discover -s tests - - python app.py \ No newline at end of file + - python app.py + +- name: cleanup + image: alpine:latest + commands: + - echo "Cleaning up any created data..." + - rm -rf /tmp/* \ No newline at end of file