Skip to content

Commit 7cf4cd5

Browse files
regular AWS tests
1 parent 296a680 commit 7cf4cd5

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.evergreen/config.in.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,10 @@ functions:
506506
- command: subprocess.exec
507507
type: test
508508
params:
509-
add_expansions_to_env: true
509+
include_expansions_in_env:
510+
- MONGODB_URI
511+
- DRIVERS_TOOLS
512+
- MONGODB_AWS_SDK
510513
working_dir: "src"
511514
binary: bash
512515
args:

.evergreen/config.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,10 @@ functions:
449449
- command: subprocess.exec
450450
type: test
451451
params:
452-
add_expansions_to_env: true
452+
include_expansions_in_env:
453+
- MONGODB_URI
454+
- DRIVERS_TOOLS
455+
- MONGODB_AWS_SDK
453456
working_dir: src
454457
binary: bash
455458
args:

.evergreen/run-mongodb-aws-test-copy.sh

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ MONGODB_URI=${MONGODB_URI:-}
77
bash $DRIVERS_TOOLS/.evergreen/auth_aws/setup-secrets.sh
88

99
BEFORE=$(pwd)
10-
echo "******** BEFORE: $(pwd)"
1110

1211
cd $DRIVERS_TOOLS/.evergreen/auth_aws
1312

@@ -18,18 +17,13 @@ cd $DRIVERS_TOOLS/.evergreen/auth_aws
1817

1918
cd $BEFORE
2019

21-
echo "******** After: $(pwd)"
22-
2320
# load node.js environment
2421
source $DRIVERS_TOOLS/.evergreen/init-node-and-npm-env.sh
2522

2623
echo "******** After Install: $(pwd)"
2724

28-
npm install aws4
25+
npm install --no-save aws4
2926

30-
# export MONGODB_AWS_SDK=true
3127
if [ $MONGODB_AWS_SDK = 'false' ]; then rm -rf ./node_modules/@aws-sdk/credential-providers; fi
3228

33-
mongosh $MONGODB_URI
34-
3529
npm run check:aws

0 commit comments

Comments
 (0)