<!-- Header Section. --> Refs: #10037 - [x] anyOS @kimadeline - [x] anyOS @joaomoreno Complexity: 3 [Create Issue](https://github.com/microsoft/vscode-jupyter/issues/new?body=Testing+%2310184%0A%0A&assignees=DonJayamanne) --- ### Requirements - Install prerelease jupyter extension into VS Code Insiders - Have a python environment - Be familiar with Python Interactive Window in Jupyter Extension ### Test Steps 1. Open VS Code insiders 2. Add the following setting into your user settings file (you'll get red squigllies as this isn't an official setting): ``` "jupyter.forceIPyKernelDebugger": true, ``` 4. Reload VS Code. 5. Open a Python file 6. Add a cell as follows: ```python # %% a = 1234 print(a) ``` 7. Click the `Debug` code lens above the `# %%` 8. Debug the cell 9. Verify the variable `a` appears in the `Jupyter Variables` viewer which can be opened using the command `Jupyter: Focus on Variables View`