We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faa3464 commit 0423cedCopy full SHA for 0423ced
1 file changed
tests/test_magic.py
@@ -952,10 +952,12 @@ def test_notebook_export_json_with_output():
952
953
for cmd in commands:
954
_ip.run_cell(cmd, store_history=True, silent=False)
955
+ print(f"\n{_ip.history_manager.outputs}\n")
956
957
with TemporaryDirectory() as td:
958
outfile = os.path.join(td, "nb.ipynb")
959
_ip.run_cell(f"%notebook {outfile}", store_history=True)
960
+ sleep(2)
961
actual_nb = nbformat.read(outfile, as_version=4)
962
963
assert len(actual_nb["cells"]) == len(commands)
0 commit comments