Add drone CI/CD support

This commit is contained in:
Jesús
2021-05-08 14:50:23 -05:00
parent b5a12e108d
commit 462c0ef323

10
.drone.yml Normal file
View File

@@ -0,0 +1,10 @@
kind: pipeline
name: default
steps:
- name: test
image: python:3.7.3
commands:
- pip install --upgrade pip
- pip install -r requirements.txt
- pytest