Skip to content

Commit 53776f4

Browse files
committed
Testing travis setup with test failures
1 parent f0e163d commit 53776f4

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

python2/runner/runner_tests/test_sensei.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,12 +150,14 @@ def test_that_nothing_is_returned_as_sorted_result_if_there_are_3_shuffled_resul
150150
self.assertEqual(2, results[0][0])
151151
self.assertEqual(30, results[1][0])
152152
self.assertEqual(299, results[2][0])
153+
self.assertTrue(false)
153154

154155
def test_that_it_will_choose_not_find_anything_with_non_standard_error_trace_string(self):
155156
self.sensei.failures = [
156157
(AboutMrGumby(),"File 'about_mr_gumby.py', line MISSING"),
157158
]
158159
self.assertEqual(None, self.sensei.sortFailures("AboutMrGumby"))
160+
self.assertFalse(true)
159161

160162

161163
def test_that_it_will_choose_correct_first_result_with_lines_9_and_27(self):

python3/runner/runner_tests/test_sensei.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,3 +298,4 @@ def test_filter_all_lessons_will_discover_test_classes_if_none_have_been_discove
298298
self.sensei.all_lessons = 0
299299
self.assertTrue(len(self.sensei.filter_all_lessons()) > 10)
300300
self.assertTrue(len(self.sensei.all_lessons) > 10)
301+
self.assertEqual(42, 1+1)

0 commit comments

Comments
 (0)