Files
plex-playlist-old/Jenkinsfile

15 lines
306 B
Plaintext
Raw Normal View History

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