mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-24 16:46:00 +01:00
967422b380
Adds --shellReadMode flag to resmoke.py and changes Evergreen / resmoke configuration files to pass --readMode commands where appropriate.
26 lines
618 B
YAML
26 lines
618 B
YAML
# Section that is ignored by resmoke.py.
|
|
config_variables:
|
|
- &keyFile jstests/libs/authTestsKey
|
|
- &keyFileData Thiskeyisonlyforrunningthesuitewithauthenticationdontuseitinanytestsdirectly
|
|
|
|
selector:
|
|
js_test:
|
|
roots:
|
|
- jstests/repl/*.js
|
|
exclude_files:
|
|
# Skip any tests that run with auth explicitly.
|
|
- jstests/repl/*[aA]uth*.js
|
|
|
|
executor:
|
|
js_test:
|
|
config:
|
|
shell_options:
|
|
global_vars:
|
|
TestData:
|
|
auth: true
|
|
authMechanism: SCRAM-SHA-1
|
|
keyFile: *keyFile
|
|
keyFileData: *keyFileData
|
|
nodb: ''
|
|
readMode: commands
|