Compare commits

...

3 Commits

Author SHA1 Message Date
Kameron Kenny 68ecc27e86 update jenkins 2024-12-20 15:07:57 -05:00
Kameron Kenny e592c39671 rename 2024-12-20 15:06:26 -05:00
Kameron Kenny 60edcd4c99 rename 2024-12-20 15:06:06 -05:00
6 changed files with 4 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -112,8 +112,8 @@ pipeline {
post {
always {
archiveArtifacts artifacts: 'test/results/**/*.xml', fingerprint: true
junit 'test/results/**/**/*.xml'
archiveArtifacts artifacts: '**/*.xml', fingerprint: true
junit '**/**/*.xml'
sh 'rm -rf test/results'
}
}

View File

@ -3,6 +3,8 @@
export BATS_LIB_PATH=.bats/libs:../.bats/libs:${HOME}/.bats/libs:/usr/local/lib/bats:/usr/lib/bats
_common_setup() {
export BATS_TEST_RETRIES=5
export BATS_TEST_TIMEOUT=15
bats_load_library bats-support
bats_load_library bats-assert
}