Skip to content

Commit 4c5acad

Browse files
committed
QPID-8170: Add a basic Jenkinsfile for a CI job
1 parent 991d031 commit 4c5acad

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Jenkinsfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
pipeline {
2+
agent any
3+
stages {
4+
stage('test') {
5+
steps {
6+
sh 'python qpid-python-test -i "*ErrorCallbackTests*" -i "*SelectorTests*" -i "*SetupTests*"'
7+
}
8+
}
9+
}
10+
}

0 commit comments

Comments
 (0)