diff options
author | Louis Williams <louis.williams@mongodb.com> | 2019-02-08 17:15:10 -0500 |
---|---|---|
committer | Louis Williams <louis.williams@mongodb.com> | 2019-02-12 13:18:15 +1100 |
commit | e85c37fe4c1663ec2be1532b9dd94c2d19fd7cfc (patch) | |
tree | 141a852cf06e3a88def362a13a46351b15c1b614 | |
parent | 7defb111584754daefece019f9045e1f0e1811ef (diff) | |
download | mongo-e85c37fe4c1663ec2be1532b9dd94c2d19fd7cfc.tar.gz |
SERVER-39401 Reduce number of repeated executions in 'Linux Repeated Execution' variant
-rw-r--r-- | etc/evergreen.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/etc/evergreen.yml b/etc/evergreen.yml index dd284a2ab48..0896d19c0af 100644 --- a/etc/evergreen.yml +++ b/etc/evergreen.yml @@ -7632,9 +7632,10 @@ buildvariants: compile_flags: -j$(grep -c ^processor /proc/cpuinfo) --variables-files=etc/scons/mongodbtoolchain_v3_gcc.vars --enable-free-mon=off --enable-http-client=off test_flags: >- --excludeWithAnyTags=requires_http_client - --repeatSuites=10 + --repeatSuites=5 --shuffle - resmoke_repeat_suites: 10 + # TODO: SERVER-39479 Increase the number of executions back to 10 + resmoke_repeat_suites: 5 # TODO: There are currently 2 ways of repeating suites, one for regular suites and one for # generated suites. Once everything is converted to generated suites, we should remove the # '--repeatSuites=10' from the test_flags. This will be done in SERVER-38817. |