Skip to content

Commit 3af2b5b

Browse files
authored
Merge pull request #230 from pgajdos/master
do not depend on nose in test_console.py
2 parents 1a1e983 + ceb2641 commit 3af2b5b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

jupyter_console/tests/test_console.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import tempfile
1010
from subprocess import check_output
1111

12-
from nose import SkipTest
1312
import pytest
1413

1514
from traitlets.tests.utils import check_help_all_output
@@ -67,7 +66,7 @@ def start_console():
6766
try:
6867
p = pexpect.spawn(cmd, args=args, env=env)
6968
except IOError:
70-
raise SkipTest("Couldn't find command %s" % cmd)
69+
pytest.skip("Couldn't find command %s" % cmd)
7170

7271
# timeout after one minute
7372
t = 60

0 commit comments

Comments
 (0)