We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e6d843 commit ac3f789Copy full SHA for ac3f789
tests/test_application.py
@@ -8,7 +8,7 @@
8
import logging
9
from unittest import TestCase
10
11
-import nose.tools as nt
+import pytest
12
from traitlets.tests.utils import check_help_all_output, check_help_output
13
14
from jupyter_contrib_core.application import main as main_app
@@ -59,5 +59,5 @@ def test_00_help_output(self):
59
check_help_output(app_module, [])
60
check_help_all_output(app_module, [])
61
# sys.exit should be called if no argv specified
62
- with nt.assert_raises(SystemExit):
+ with pytest.raises(SystemExit):
63
main_app([])
0 commit comments