Skip to content

Commit

Permalink
Merge pull request #128 from w3c/jgraham/manifest_order
Browse files Browse the repository at this point in the history
Ensure that manifests are always run in the same order; r=Ms2ger
  • Loading branch information
Ms2ger committed Jul 3, 2015
2 parents 9fa6d92 + 1a41e3c commit 35b9e6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wptrunner/testloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ def load_metadata(self, test_manifest, metadata_path, test_path):
def iter_tests(self):
manifest_items = []

for manifest in self.manifests.keys():
for manifest in sorted(self.manifests.keys()):
manifest_iter = iterfilter(self.manifest_filters,
manifest.itertypes(*self.test_types))
manifest_items.extend(manifest_iter)
Expand Down

0 comments on commit 35b9e6b

Please sign in to comment.