diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..c6ac43d --- /dev/null +++ b/.drone.yml @@ -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 \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..4cc5fea --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ + +flask \ No newline at end of file