Disable flaky test_sidebar_invariants property test (#53410)

The `test_sidebar_invariants` property test has been flaking recently.
Marking it as `#[ignore]` to unblock CI while the root cause is
investigated.

Release Notes:

- N/A
This commit is contained in:
Richard Feldman 2026-04-08 11:50:36 -04:00 committed by GitHub
parent b46be46675
commit 252e850779
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View file

@ -14,6 +14,7 @@ pub fn test(args: TokenStream, item: TokenStream) -> TokenStream {
let test_name = func.sig.ident.clone();
let inner_fn_name = format_ident!("__{test_name}");
let outer_fn_attributes = &func.attrs;
let parsed_args = parse_args(func.sig.inputs, &test_name);
@ -54,6 +55,7 @@ pub fn test(args: TokenStream, item: TokenStream) -> TokenStream {
#arg_errors
#[::gpui::proptest::property_test(proptest_path = "::gpui::proptest", #args)]
#(#outer_fn_attributes)*
fn #test_name(#proptest_args) {
#inner_fn

View file

@ -6101,6 +6101,7 @@ mod property_test {
cases: 50,
..Default::default()
})]
#[ignore = "temporarily disabled to unblock PRs from landing"]
async fn test_sidebar_invariants(
#[strategy = gpui::proptest::collection::vec(0u32..DISTRIBUTION_SLOTS * 10, 1..5)]
raw_operations: Vec<u32>,