Skip to content

Commit 676ba37

Browse files
committed
Fixed internal tests again, re-testing koans
1 parent 75fa699 commit 676ba37

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ script:
1010
- PYTHON_VER=`python -c 'import sys; print(sys.version_info[0])'`
1111
- cd python$PYTHON_VER
1212
- python _runner_tests.py
13-
# - python contemplate_koans.py # Run all the koans
13+
- python contemplate_koans.py # Run all the koans
1414
# - python contemplate_koans.py about_asserts about_none # Run a subset of
1515
# # koans
1616
#

python2/runner/runner_tests/test_sensei.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,14 +150,12 @@ 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)
154153

155154
def test_that_it_will_choose_not_find_anything_with_non_standard_error_trace_string(self):
156155
self.sensei.failures = [
157156
(AboutMrGumby(),"File 'about_mr_gumby.py', line MISSING"),
158157
]
159158
self.assertEqual(None, self.sensei.sortFailures("AboutMrGumby"))
160-
self.assertFalse(true)
161159

162160

163161
def test_that_it_will_choose_correct_first_result_with_lines_9_and_27(self):

python3/runner/runner_tests/test_sensei.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,4 +298,3 @@ 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)