diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..34a8fc8 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,10 @@ +pipeline: + build: + image: python:3.5.1-alpine + commands: + - pip install --upgrade pip setuptools wheel + - pip wheel -r requirements.txt --wheel-dir=wheeldir --find-links=wheeldir + - pip install --no-index --find-links=wheeldir -r requirements.txt + - flake8 app + - mkdir -p coverage + - nosetests -v tests/ \ No newline at end of file