File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# http://travis-ci.org/#!/ipython/ipython
22language : python
33python :
4+ - " nightly"
45 - 3.4
56 - 3.3
67 - 2.7
78sudo : false
9+ matrix :
10+ allow_failures :
11+ - python : " nightly"
812before_install :
913 - git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
1014 - ' if [[ $GROUP != js* ]]; then COVERAGE=""; fi'
Original file line number Diff line number Diff line change 5050# Tests
5151#-----------------------------------------------------------------------------
5252
53+ class DerivedInterrupt (KeyboardInterrupt ):
54+ pass
55+
5356class InteractiveShellTestCase (unittest .TestCase ):
5457 def test_naked_string_cells (self ):
5558 """Test that cells with only naked strings are fully executed"""
@@ -502,8 +505,6 @@ def test_get_exception_only(self):
502505 msg = ip .get_exception_only ()
503506 self .assertEqual (msg , 'KeyboardInterrupt\n ' )
504507
505- class DerivedInterrupt (KeyboardInterrupt ):
506- pass
507508 try :
508509 raise DerivedInterrupt ("foo" )
509510 except KeyboardInterrupt :
You can’t perform that action at this time.
0 commit comments