Compare commits

..

No commits in common. "68ecc27e869673351e33aa0a5ce338cc2e449b8a" and "27f431462f122c21b9eabe6b334e990e3b06ea13" have entirely different histories.

6 changed files with 2 additions and 4 deletions

4
Jenkinsfile vendored
View File

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

View File

@ -3,8 +3,6 @@
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
} }