ci: move tests than can be run in parallel now (#3038)

This commit is contained in:
Georg Lauterbach 2023-01-30 09:19:47 +01:00 committed by GitHub
parent 66f3bbc062
commit e6dee0f2f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 2 additions and 1 deletions

View file

@ -0,0 +1,23 @@
load "${REPOSITORY_ROOT}/test/helper/common"
load "${REPOSITORY_ROOT}/test/helper/setup"
BATS_TEST_NAME_PREFIX='[Timezone] '
CONTAINER_NAME='dms-test_timezone'
function setup_file() {
_init_with_defaults
local CUSTOM_SETUP_ARGUMENTS=(--env TZ='Asia/Jakarta')
_common_container_setup 'CUSTOM_SETUP_ARGUMENTS'
}
function teardown_file() { _default_teardown ; }
@test "setting the time with TZ works correctly" {
_run_in_container cat /etc/timezone
assert_success
assert_output 'Asia/Jakarta'
_run_in_container date '+%Z'
assert_success
assert_output 'WIB'
}