summaryrefslogtreecommitdiff
path: root/buildscripts/templates/generate_resmoke_suites/sharding.yml.j2
blob: 9acfb534188e7df01652addf0fac429542539384 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# This file was generated by buildscripts/generate_resmoke_suites.py and manual edits should also be
# made to sharding.yml in order to ensure running the full test suite locally matches the behavior
# of running parts of the test suite in Evergreen. It was generated against commit range:
#   {{ start_commit }} - {{ end_commit }}
# with the following options:
#   {{ options }}
test_kind: js_test

selector:
{% if variants is defined %}
  # The following tests take approximately
{% for variant in variants %}
  #   {{ variant.runtime }} minutes to run on {{ variant.name }}
{% endfor %}
{% endif %}
  roots:
{% for test in test_names %}
  - {{ test }}
{% endfor %}
{% if is_misc is defined %}
  - jstests/sharding/*.js
  exclude_files:
  # Enable when SERVER-36634 is fixed.
  - jstests/sharding/shard_collection_existing_zones.js
{% endif %}
{% if excluded_tests is defined %}
  exclude_files:
{% for test in excluded_tests %}
  - {{ test }}
{% endfor %}
{% endif %}

executor:
  config:
    shell_options:
      nodb: ''
      readMode: commands