You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Set your cursor to the first 'cell'. Quickly hit shift+enter to create the interactive window and run each cell and advance to the next for all cells
Verify that the UI looks like this
Code cell inputs should be initially collapsed, showing a preview of the code cell input
Verify that the cells all executed and in the order they were submitted in
Submit a few more cells. Verify that as you execute cells, the interactive window scrolls to reveal new cells and their output. Verify that if you scroll up such that the last cell is not visible, then submit more #%% cells, the interactive window does not scroll to reveal new cells and their outputs.
Clicking on the Go To codelens above each #%% cell should scroll the corresponding interactive window notebook cell into view
Verify the current working directory in the Jupyter kernel selected as the controller for the interactive window is set by running a cell containing pwd from the interactive window input box
Use the toolbar to export the interactive window contents to Python script or HTML. Verify that the export works
Verify that you can set breakpoints in your Python script and debug #%% cells using the Debug Cell codelens
The text was updated successfully, but these errors were encountered:
Refs: #126415
Complexity: 4
Authors: @rebornix, @joyceerhl
Create Issue
In this iteration we addressed any remaining ship-blocking bugs for the built-in interactive window in the Jupyter extension, and enabled the built-in interactive window by default for all users.
python -m pip install ipykernel nbconvert
#%%
to create an interactive cell delimited by codelenses. Create several of these, e.g.pwd
from the interactive window input boxThe text was updated successfully, but these errors were encountered: