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
Fix issues with LiveShare and triple quotes (#5084)
For #5012 and bugs found while testing the fix for 5012 around liveshare
<!--
If an item below does not apply to you, then go ahead and check it off as "done" and strikethrough the text, e.g.:
- [x] ~Has unit tests & system/integration tests~
-->
- [x] Pull request represents a single change (i.e. not fixing disparate/unrelated things in a single PR)
- [x] Title summarizes what is changing
- [x] Has a [news entry](https://github.com/Microsoft/vscode-python/tree/master/news) file (remember to thank yourself!)
- [x] Has sufficient logging.
- [ ] Has telemetry for enhancements.
- [x] Unit tests & system/integration tests are added/updated
- [ ] [Test plan](https://github.com/Microsoft/vscode-python/blob/master/.github/test_plan.md) is updated as appropriate
- [ ] [`package-lock.json`](https://github.com/Microsoft/vscode-python/blob/master/package-lock.json) has been regenerated by running `npm install` (if dependencies have changed)
- [ ] The wiki is updated with any design decisions/details.
Copy file name to clipboardExpand all lines: build/ci/vscode-python-ci.yaml
+1-7Lines changed: 1 addition & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ variables:
18
18
NpmVersion: 'latest'
19
19
MOCHA_FILE: '$(Build.ArtifactStagingDirectory)/test-junit.xml'# All test files will write their JUnit xml output to this file, clobbering the last time it was written.
20
20
MOCHA_REPORTER_JUNIT: true # Use the mocha-multi-reporters and send output to both console (spec) and JUnit (mocha-junit-reporter).
21
-
#VSC_PYTHON_FORCE_LOGGING: true - Enable this to turn on console output for the logger
21
+
VSC_PYTHON_FORCE_LOGGING: true # Enable this to turn on console output for the logger
22
22
23
23
jobs:
24
24
@@ -213,47 +213,41 @@ jobs:
213
213
NeedsPythonFunctionalReqs: true
214
214
# This tells the functional tests to not mock out Jupyter...
0 commit comments