Exemplo n.º 1
0
 def _line_from_test_and_flaky_types_and_bug_urls(self, test_path, flaky_types, bug_urls):
     line = TestExpectationLine()
     line.original_string = test_path
     line.name = test_path
     line.filename = test_path
     line.specifiers = bug_urls if bug_urls else ""
     line.expectations = sorted(map(self.results_json.expectation_for_type, flaky_types))
     return line
Exemplo n.º 2
0
 def _line_from_test_and_flaky_types_and_bug_urls(self, test_path,
                                                  flaky_types, bug_urls):
     line = TestExpectationLine()
     line.original_string = test_path
     line.name = test_path
     line.filename = test_path
     line.modifiers = bug_urls if bug_urls else ""
     line.expectations = sorted(
         map(self.results_json.expectation_for_type, flaky_types))
     return line
Exemplo n.º 3
0
 def _line_from_test_and_flaky_types(self, test_path, flaky_types):
     line = TestExpectationLine()
     line.original_string = test_path
     line.name = test_path
     line.filename = test_path
     line.path = test_path  # FIXME: Should this be normpath?
     line.matching_tests = [test_path]
     line.bugs = ["crbug.com/FILE_A_BUG_BEFORE_COMMITTING_THIS"]
     line.expectations = sorted(flaky_types)
     line.specifiers = self.specifiers
     return line
Exemplo n.º 4
0
 def _line_from_test_and_flaky_types(self, test_path, flaky_types):
     line = TestExpectationLine()
     line.original_string = test_path
     line.name = test_path
     line.filename = test_path
     line.path = test_path  # FIXME: Should this be normpath?
     line.matching_tests = [test_path]
     line.bugs = ["crbug.com/FILE_A_BUG_BEFORE_COMMITTING_THIS"]
     line.expectations = sorted(flaky_types)
     line.specifiers = self.specifiers
     return line
Exemplo n.º 5
0
 def _line_from_test_and_flaky_types_and_bug_urls(self, test_path, flaky_types, bug_urls):
     line = TestExpectationLine()
     line.original_string = test_path
     line.name = test_path
     line.filename = test_path
     line.path = test_path  # FIXME: Should this be normpath?
     line.matching_tests = [test_path]
     line.bugs = bug_urls if bug_urls else ["Bug(gardener)"]
     line.expectations = sorted(map(self.results_json.expectation_for_type, flaky_types))
     line.specifiers = self.specifiers
     return line
 def _line_from_test_and_flaky_types_and_bug_urls(self, test_path, flaky_types, bug_urls):
     line = TestExpectationLine()
     line.original_string = test_path
     line.name = test_path
     line.filename = test_path
     line.path = test_path  # FIXME: Should this be normpath?
     line.matching_tests = [test_path]
     line.bugs = bug_urls if bug_urls else ["Bug(gardener)"]
     line.expectations = sorted(map(self.results_json.expectation_for_type, flaky_types))
     line.specifiers = self.specifiers
     return line