diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-07-29 16:18:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-29 16:18:25 -0400 |
commit | 38a363dc7caef189372861182c3336c56b8efffb (patch) | |
tree | 5aad54ce48735071c1f9bdc07d5a4d20aa5aab4c /tests/integration/upgrade_tests.rs | |
parent | 8c2f1f5a55a2a9bb9e04c12236faa341b3fd49b6 (diff) |
chore: mark upgrade invalid lockfile as flaky (#24760)
Closes #24759
Diffstat (limited to 'tests/integration/upgrade_tests.rs')
-rw-r--r-- | tests/integration/upgrade_tests.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/integration/upgrade_tests.rs b/tests/integration/upgrade_tests.rs index 54408907e..f543df68b 100644 --- a/tests/integration/upgrade_tests.rs +++ b/tests/integration/upgrade_tests.rs @@ -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() |