-
Notifications
You must be signed in to change notification settings - Fork 524
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
Add support for certificates #627
Conversation
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.
I have a slight preference to make this feature "opt-in" because it's less risky (as discussed offline) but could be convinced the other way, too. Everything else looks fine to me
@@ -15,7 +15,7 @@ gulp.task('test', ['install-azure-account'], (cb) => { | |||
const env = process.env; | |||
env.DEBUGTELEMETRY = 1; | |||
env.CODE_TESTS_WORKSPACE = './test/test.code-workspace'; | |||
env.MOCHA_reporter = 'mocha-junit-reporter'; | |||
//env.MOCHA_reporter = 'mocha-junit-reporter'; |
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.
If you're going to comment this out then you have to set MOCHA_reporter
somewhere else otherwise the CI builds will never fail for tests
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.
Yeah, working on that. The current situation makes it difficult to troubleshoot.
Fixes #483