From 54511a1813a544a50aba39928eaad422125c1806 Mon Sep 17 00:00:00 2001 From: Ian Huff Date: Fri, 18 Sep 2020 09:25:05 -0700 Subject: [PATCH 1/2] update test plan for ipykernel --- .github/test_plan.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/test_plan.md b/.github/test_plan.md index fe7e2ee9d424..5f3608e912b1 100644 --- a/.github/test_plan.md +++ b/.github/test_plan.md @@ -492,6 +492,12 @@ def test_failure(): 1. Verify the variables explorer window shows output not available while debugging 1. When you get to the end of the cell, the debugger should stop 1. Output from the cell should show up in the Interactive Window (sometimes you have to finish debugging the cell first) +- [ ] Verify installing ipykernel in a new environment + 1. Create a brand new folder on your machine + 1. Create a new venv in that folder via command line / terminal `python3 -m venv .newEnv` + 1. Open that folder in VS Code and copy the manual test file there + 1. Execute the manual test file, you should be prompted to install ipykernel in `.newEnv` + 1. After ipykernel is installed execution of the file should continue successfully #### P1 Test Scenarios From babbc03ce34bc4e53dac3cc03ea20897e60c4113 Mon Sep 17 00:00:00 2001 From: Ian Huff Date: Fri, 18 Sep 2020 09:43:11 -0700 Subject: [PATCH 2/2] review feedback --- .github/test_plan.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/test_plan.md b/.github/test_plan.md index 5f3608e912b1..8183c3dda071 100644 --- a/.github/test_plan.md +++ b/.github/test_plan.md @@ -496,6 +496,7 @@ def test_failure(): 1. Create a brand new folder on your machine 1. Create a new venv in that folder via command line / terminal `python3 -m venv .newEnv` 1. Open that folder in VS Code and copy the manual test file there + 1. Select the newly created venv by running Ctrl+Shift+P, typing 'Python: Select Interpreter' into the VS Code command palette, and selecting the new venv from the dropdown. If the new venv doesn't appear in the quickpick you may need to reload VS Code and reattempt this step. 1. Execute the manual test file, you should be prompted to install ipykernel in `.newEnv` 1. After ipykernel is installed execution of the file should continue successfully