-
Notifications
You must be signed in to change notification settings - Fork 445
Fix log output #810
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Fix log output #810
Changes from all commits
3ca902c
1ef9db6
4dfb47f
2ec6897
f9000b0
abf1112
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -9,7 +9,7 @@ | |||||||||||||||||||||||||||||||||||||||||||||||||||
| from .. import engines, exceptions | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| from ..engines import Engine, NBClientEngine, NotebookExecutionManager | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| from ..iorw import load_notebook_node | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| from ..log import logger | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| from ..log import logger, notebook_logger | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| from . import get_notebook_path | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
@@ -434,39 +434,50 @@ def test_nb_convert_engine_execute(self): | |||||||||||||||||||||||||||||||||||||||||||||||||||
| def test_nb_convert_log_outputs(self): | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| with patch.object(logger, 'info') as info_mock: | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| with patch.object(logger, 'warning') as warning_mock: | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| with patch.object(NotebookExecutionManager, 'save'): | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| NBClientEngine.execute_notebook( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| self.nb, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| 'python', | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| output_path='foo.ipynb', | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| progress_bar=False, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| log_output=True, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| ) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| info_mock.assert_has_calls( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| [ | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| call('Executing notebook with kernel: python'), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| call('Executing Cell 1---------------------------------------'), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| call('Ending Cell 1------------------------------------------'), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| call('Executing Cell 2---------------------------------------'), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| call('None\n'), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| call('Ending Cell 2------------------------------------------'), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| ] | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| ) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| warning_mock.is_not_called() | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| with patch.object(notebook_logger, 'info') as notebook_info_mock: | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| with patch.object(notebook_logger, 'warning') as notebook_warning_mock: | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| with patch.object(NotebookExecutionManager, 'save'): | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
435
to
+439
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
consider reducing the depth |
||||||||||||||||||||||||||||||||||||||||||||||||||||
| NBClientEngine.execute_notebook( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| self.nb, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| 'python', | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| output_path='foo.ipynb', | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| progress_bar=False, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| log_output=True, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| ) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| info_mock.assert_has_calls( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| [ | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| call('Executing notebook with kernel: python'), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| call('Executing Cell 1---------------------------------------'), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| call('Ending Cell 1------------------------------------------'), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| call('Executing Cell 2---------------------------------------'), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| call('Ending Cell 2------------------------------------------'), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| ] | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| ) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| notebook_info_mock.assert_has_calls( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| [ | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| call('None\n'), | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| ] | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| ) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| warning_mock.is_not_called() | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| notebook_warning_mock.is_not_called() | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+461
to
+462
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
| def test_nb_convert_no_log_outputs(self): | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| with patch.object(logger, 'info') as info_mock: | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| with patch.object(logger, 'warning') as warning_mock: | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| with patch.object(NotebookExecutionManager, 'save'): | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| NBClientEngine.execute_notebook( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| self.nb, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| 'python', | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| output_path='foo.ipynb', | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| progress_bar=False, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| log_output=False, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| ) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| info_mock.is_not_called() | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| warning_mock.is_not_called() | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| with patch.object(notebook_logger, 'info') as notebook_info_mock: | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| with patch.object(notebook_logger, 'warning') as notebook_warning_mock: | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| with patch.object(NotebookExecutionManager, 'save'): | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| NBClientEngine.execute_notebook( | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| self.nb, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| 'python', | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| output_path='foo.ipynb', | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| progress_bar=False, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| log_output=False, | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| ) | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| info_mock.is_not_called() | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| warning_mock.is_not_called() | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| notebook_info_mock.is_not_called() | ||||||||||||||||||||||||||||||||||||||||||||||||||||
| notebook_warning_mock.is_not_called() | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+477
to
+480
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
| class TestEngineRegistration(unittest.TestCase): | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This commented-out code should be removed. Leftover commented code reduces code clarity and maintainability.