-
Notifications
You must be signed in to change notification settings - Fork 13
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
Fixed disabling of security prompts in e2e tests. #3454
Conversation
mitchell-as
commented
Aug 20, 2024
•
edited by github-actions
bot
Loading
edited by github-actions
bot
DX-3018 Nightly failures: non-checkout tests that checkout projects with lots of CVEs |
@@ -182,7 +182,7 @@ func new(t *testing.T, retainDirs, updatePath bool, extraEnv ...string) *Session | |||
err = fileutils.Touch(filepath.Join(dirs.Base, installation.InstallDirMarker)) | |||
require.NoError(session.T, err) | |||
|
|||
cfg, err := config.New() | |||
cfg, err := config.NewCustom(dirs.Config, singlethread.New(), true) |
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.
This is the fix.
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.
Good catch
c73768e
to
9aba7d0
Compare
Test failures are known or the usual timeouts. |
@@ -182,7 +182,7 @@ func new(t *testing.T, retainDirs, updatePath bool, extraEnv ...string) *Session | |||
err = fileutils.Touch(filepath.Join(dirs.Base, installation.InstallDirMarker)) | |||
require.NoError(session.T, err) | |||
|
|||
cfg, err := config.New() | |||
cfg, err := config.NewCustom(dirs.Config, singlethread.New(), true) |
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.
Good catch