Files
plex-playlist-old/Jenkinsfile
2021-10-26 08:07:13 -04:00

15 lines
291 B
Groovy

pipeline {
agent {
docker { image 'python:3.10-alpine3.14' }
}
stages {
stage('Test') {
steps {
pip3 install --upgrade pip
pip3 install wheel nox nox_poetry poetry
nox -x
}
}
}
}