File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 87
87
- MONGODB_VERSION=latest
88
88
- MONGODB_UNIFIED_TOPOLOGY=1
89
89
- MONGODB_ENVIRONMENT=replicaset
90
+ - MONGODB_CLIENT_ENCRYPTION=1
90
91
91
92
allow_failures :
92
93
- env :
Original file line number Diff line number Diff line change @@ -7,9 +7,10 @@ const generateTopologyTests = require('./runner').generateTopologyTests;
7
7
8
8
const missingAwsConfiguration =
9
9
process . env . AWS_ACCESS_KEY_ID == null || process . env . AWS_SECRET_ACCESS_KEY == null ;
10
+ const skipTests = missingAwsConfiguration || process . env . MONGODB_CLIENT_ENCRYPTION == null ;
10
11
11
12
describe ( 'Client Side Encryption' , function ( ) {
12
- if ( missingAwsConfiguration ) {
13
+ if ( skipTests ) {
13
14
console . log ( 'skipping Client Side Encryption tests due to lack of AWS credentials' ) ;
14
15
return ;
15
16
}
You can’t perform that action at this time.
0 commit comments