From e1bb6184ab2392052ab7df01a92aa14a091273c4 Mon Sep 17 00:00:00 2001 From: Mike Shoup Date: Thu, 27 Jun 2019 12:50:02 -0600 Subject: [PATCH] Add drone config --- .drone.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..6faa4ae --- /dev/null +++ b/.drone.yml @@ -0,0 +1,11 @@ +kind: pipeline +name: default + +steps: +- test + image: python:3.6 + commands: + - pip install coverage pytest + - pip install -e . + - coverage run -m pytest + - coverage report -m