-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Get more nightly tests to pass #11881
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -0,0 +1,22 @@ | |||
// Copyright (c) Microsoft Corporation. All rights reserved. | |||
// Licensed under the MIT License. | |||
import { injectable } from 'inversify'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note, this file will only be added to the loggers during testing. It simply logs the cell execution.
Kudos, SonarCloud Quality Gate passed!
|
@@ -592,7 +592,7 @@ suite('FileSystem', () => { | |||
|
|||
suite('createWriteStream', () => { | |||
test('wraps the low-level impl', async () => { | |||
const filename = await fix.resolve('x/y/z/spam.py'); | |||
const filename = await fix.resolve('x/y/z/spam2.py'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's this change for?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, this test is randomly failing. Been trying to figure out why. Near as I can tell is that the file exists when it shouldn't (read test is interfering with the write test).
I can't repro locally, but I figured I'd try this instead of just disabling the test.
Get more nightly tests to pass and add more logging.