Home | History | Annotate | Download | only in campaigns

Lines Matching refs:shards

23     "shards",
109 shards = int(kwargs["shards"])
116 if shards > 1:
118 test_command = "test --keep-result -- %s --shards %d %s" % (
119 test_name, shards, param)
120 if shards <= len(serials):
121 for shard_index in range(shards):
132 result.append("test --keep-result -- %s --serial %s --shards %s %s" %
133 (test_name, ",".join(serials), shards, param))
135 result.append("test --keep-result -- %s --shards %s %s" % (
136 test_name, shards, param))