Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: integ test pipeline script #1149

Merged
merged 1 commit into from
Mar 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/run-integration-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ if [ -e "${CONFIG_TARGET_PATH}" ]; then
echo "Already present; not overwriting!"
else
echo "Not present; checking if present in S3"
aws s3api head-object --bucket $DEPLOYMENT_BUCKET --key "integration-test/$ENV_NAME.yml" --no-cli-pager --region $REGION || TEST_CONFIG_EXISTS=false
aws s3api head-object --bucket $DEPLOYMENT_BUCKET --key "integration-test/$ENV_NAME.yml" --region $REGION || TEST_CONFIG_EXISTS=false

if [ "$TEST_CONFIG_EXISTS" == true ]; then
echo "Test config found! Downloading from ${CONFIG_S3_PATH}"
Expand Down