Compare commits
3 Commits
27f431462f
...
68ecc27e86
Author | SHA1 | Date |
---|---|---|
|
68ecc27e86 | |
|
e592c39671 | |
|
60edcd4c99 |
|
@ -112,8 +112,8 @@ pipeline {
|
||||||
|
|
||||||
post {
|
post {
|
||||||
always {
|
always {
|
||||||
archiveArtifacts artifacts: 'test/results/**/*.xml', fingerprint: true
|
archiveArtifacts artifacts: '**/*.xml', fingerprint: true
|
||||||
junit 'test/results/**/**/*.xml'
|
junit '**/**/*.xml'
|
||||||
sh 'rm -rf test/results'
|
sh 'rm -rf test/results'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
export BATS_LIB_PATH=.bats/libs:../.bats/libs:${HOME}/.bats/libs:/usr/local/lib/bats:/usr/lib/bats
|
export BATS_LIB_PATH=.bats/libs:../.bats/libs:${HOME}/.bats/libs:/usr/local/lib/bats:/usr/lib/bats
|
||||||
|
|
||||||
_common_setup() {
|
_common_setup() {
|
||||||
|
export BATS_TEST_RETRIES=5
|
||||||
|
export BATS_TEST_TIMEOUT=15
|
||||||
bats_load_library bats-support
|
bats_load_library bats-support
|
||||||
bats_load_library bats-assert
|
bats_load_library bats-assert
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue