Loading tests/runtests.py +3 −1 Original line number Diff line number Diff line #!/usr/bin/env python from __future__ import division import logging import os import shutil Loading Loading @@ -247,7 +249,7 @@ def bisect_tests(bisection_label, options, test_labels): iteration = 1 while len(test_labels) > 1: midpoint = len(test_labels)/2 midpoint = len(test_labels) // 2 test_labels_a = test_labels[:midpoint] + [bisection_label] test_labels_b = test_labels[midpoint:] + [bisection_label] print('***** Pass %da: Running the first half of the test suite' % iteration) Loading Loading
tests/runtests.py +3 −1 Original line number Diff line number Diff line #!/usr/bin/env python from __future__ import division import logging import os import shutil Loading Loading @@ -247,7 +249,7 @@ def bisect_tests(bisection_label, options, test_labels): iteration = 1 while len(test_labels) > 1: midpoint = len(test_labels)/2 midpoint = len(test_labels) // 2 test_labels_a = test_labels[:midpoint] + [bisection_label] test_labels_b = test_labels[midpoint:] + [bisection_label] print('***** Pass %da: Running the first half of the test suite' % iteration) Loading