Bugfix: removed blocking continue from shuffling option

pull/420/head
Przemek Wirkus 2014-07-28 17:23:09 +01:00
parent d66852d09f
commit c75944562f
1 changed files with 0 additions and 1 deletions

View File

@ -271,7 +271,6 @@ class SingleTestRunner(object):
test_map_keys = TEST_MAP.keys()
if self.opts_shuffle_test_order:
random.shuffle(test_map_keys, self.shuffle_random)
continue
for test_id in test_map_keys:
test = TEST_MAP[test_id]