Browse Source

Added jenkinsfile.

pull/2/head
Richard Neumann 4 years ago
parent
commit
23e3604930
  1. 13
      Jenkinsfile

13
Jenkinsfile

@ -0,0 +1,13 @@
pipeline {
agent none
stages {
stage('pytest') {
steps {
sh '''python3 -m venv /var/build/jenkins
source env/bin/activate
'''
}
}
}
}
Loading…
Cancel
Save