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