mirror of
https://github.com/versity/versitygw.git
synced 2026-04-21 21:20:29 +00:00
12 lines
330 B
Bash
Executable File
12 lines
330 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export VERSITYGW_TEST_ENV=$WORKSPACE/tests/.env.default
|
|
# shellcheck source=./.env.default
|
|
source "$VERSITYGW_TEST_ENV"
|
|
export AWS_PROFILE BUCKET_ONE_NAME BUCKET_TWO_NAME AWS_ENDPOINT_URL
|
|
if ! "$HOME"/bin/bats ./tests/s3_bucket_tests.sh; then
|
|
exit 1
|
|
fi
|
|
if ! "$HOME"/bin/bats ./tests/posix_tests.sh; then
|
|
exit 1
|
|
fi |