From b8d1998bb376bf0ade5b854bf95b2af1785c975b Mon Sep 17 00:00:00 2001 From: Philipp Rothmann Date: Fri, 29 Apr 2022 15:52:06 +0200 Subject: [PATCH] add dronefile --- .drone.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..b1707d6 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,10 @@ +kind: pipeline +name: default + +steps: +- name: test + image: python + commands: + - pip install -r requirements.txt + - pytest +