Tests: Fix path to test script

This commit is contained in:
Tobias Gruetzmacher 2022-05-28 01:24:20 +02:00
parent 8ea9184570
commit 54a7555cf8

View file

@ -9,7 +9,7 @@ node {
stage ('Run tests') {
timeout(time: 12, unit: 'HOURS') {
withCredentials([string(credentialsId: 'proxymap', variable: 'PROXYMAP')]) {
sh 'podman run --rm -v $PWD:/work --userns=keep-id docker.io/python:3.10-bullseye tests/modules/testall.sh'
sh 'podman run --rm -v $PWD:/work --userns=keep-id docker.io/python:3.10-bullseye /work/tests/modules/testall.sh'
}
}
}