1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

chore: mark upgrade invalid lockfile as flaky (#24760)

Closes #24759
This commit is contained in:
David Sherret 2024-07-29 16:18:25 -04:00 committed by GitHub
parent 8c2f1f5a55
commit 38a363dc7c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -194,7 +194,7 @@ fn upgrade_invalid_canary_version() {
);
}
#[test]
#[flaky_test::flaky_test]
fn upgrade_invalid_lockfile() {
let context = upgrade_context();
let temp_dir = context.temp_dir();
@ -213,6 +213,7 @@ fn upgrade_invalid_lockfile() {
.arg("upgrade")
.arg("--version")
.arg("foobar")
.arg("--dry-run")
.stderr(Stdio::piped())
.spawn()
.unwrap()