Skip to content

Commit

Permalink
Make BenchmarkSpec.vms order consistent across runs. (GoogleCloudPlat…
Browse files Browse the repository at this point in the history
  • Loading branch information
skschneider committed Apr 15, 2016
1 parent 5aeb34f commit 24de46c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion perfkitbenchmarker/benchmark_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def ConstructVirtualMachines(self):
vm_group_specs = self.config.vm_groups

clouds = {}
for group_name, group_spec in vm_group_specs.iteritems():
for group_name, group_spec in sorted(vm_group_specs.iteritems()):
vms = self.ConstructVirtualMachineGroup(group_name, group_spec)

if group_spec.os_type == os_types.JUJU:
Expand Down

0 comments on commit 24de46c

Please sign in to comment.