Skip to content
Snippets Groups Projects
Commit 5c8c479d authored by Martin Weinelt's avatar Martin Weinelt
Browse files

Jenkinsfile: fix glob for test scripts

parent 6042f525
No related branches found
No related tags found
No related merge requests found
......@@ -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"
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment