From afb8ad24a35ec58046879efb05be1b7925a7946e Mon Sep 17 00:00:00 2001 From: Pascal Lais Date: Tue, 10 Mar 2020 12:01:11 +0100 Subject: [PATCH] Add drone ci configuration --- .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..0d184db --- /dev/null +++ b/.drone.yml @@ -0,0 +1,10 @@ +kind: pipeline +type: docker +name: default + +steps: +- name: test + image: python + commands: + - pip install -r requirements.txt + - pytest \ No newline at end of file