1
0
Fork 0
mirror of https://github.com/qurator-spk/dinglehopper.git synced 2025-06-09 20:00:01 +02:00
dinglehopper/.drone.jsonnet
Gerber, Mike edc24cd4db
All checks were successful
continuous-integration/drone/push Build is passing
✔️ DroneCI: Build on Python 3.6 → 3.10
2022-03-03 16:35:26 +01:00

24 lines
489 B
Jsonnet

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-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"),
Pipeline("python-3-10", "python:3.10"),
]