modified: .drone.yml
Some checks failed
continuous-integration/drone/push Build was killed

This commit is contained in:
2024-12-06 09:47:35 +01:00
parent c964552de4
commit 13c185d614

View File

@@ -7,20 +7,12 @@ steps:
image: python:3.9
commands:
- pip install -r requirements.txt
- cd web # Change to the correct directory
- python app.py | tee output.log
- find . -name "*.py" -exec python -m py_compile {} \;
when:
timeout: 15s
- name: check-success
image: alpine:latest
commands:
- grep "Debug mode: on" output.log
- name: cleanup
image: alpine:latest
commands:
- echo "Cleaning up any created data..."
- rm -rf /tmp/*
depends_on:
- check-success
- rm -rf /tmp/*