Skip to content

Commit

Permalink
Jenkinsfile: fix glob for test scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt committed Apr 17, 2020
1 parent 6042f52 commit 5c8c479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/ci/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ pipeline {
sh label: 'Unpack image', script: 'gunzip -cd ./output/images/factory/*x86-64*.img.gz > ./image.img'
sh label: 'Print python environment', script: 'python3 -m pip freeze'
script {
for (f in findFiles(glob: '**/tests/*.py')) {
for (f in findFiles(glob: 'tests/*.py')) {
sh label: "Test ${f.name}", script: "python3 tests/${f.name} --use-tmp-workdir"
}
}
Expand Down

0 comments on commit 5c8c479

Please sign in to comment.