drone testing added

This commit is contained in:
2024-12-06 09:33:42 +01:00
parent ebb3f69a4e
commit 23fde345af
2 changed files with 14 additions and 0 deletions

12
.drone.yml Normal file
View File

@@ -0,0 +1,12 @@
kind: pipeline
type: docker
name: default
steps:
- name: test
image: python:3.9
commands:
- pip install -r requirements.txt
- python -m unittest discover -s tests
- python app.py

2
requirements.txt Normal file
View File

@@ -0,0 +1,2 @@
flask