From 985666a71c4b2e7c0db88f45e94aedd04c76269f Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Wed, 10 Feb 2021 20:35:22 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20dinglehopper:=20Try=20out=20Dron?= =?UTF-8?q?e=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..f5ea87f --- /dev/null +++ b/.drone.yml @@ -0,0 +1,24 @@ +local Pipeline(name, image) = { + kind: "pipeline", + name: name, + steps: [ + { + name: "test", + image: image, + commands: [ + "pip install -U pip", + "pip install -r requirements.txt", + "pip install pytest", + "pytest" + ] + } + ] +}; + +[ + Pipeline("python-3-5", "python:3.5"), + Pipeline("python-3-6", "python:3.6"), + Pipeline("python-3-7", "python:3.7"), + Pipeline("python-3-8", "python:3.8"), + Pipeline("python-3-9", "python:3.9"), +]