blob: c0d1c812058d47c77f4608cdea4ad829948e3e59 [file]
{
"image": "alpine:3",
"stages": [
"test"
],
"run test": {
"stage": "test",
"script": [
"apk add file",
"apk add python3 py3-pip",
"python3 -m pip install pytest",
"cd code && pytest"
]
}
}