project: Disable project_tests::test_rescan_and_remote_updates
on Linux (#13062)
This PR disables the `project::project_tests::test_rescan_and_remote_updates` test on Linux, as we've been seeing it fail quite consistently in CI. We can re-enable it once we've had a chance to investigate and fix. Release Notes: - N/A
This commit is contained in:
parent
53f702c92f
commit
6ca09bd4ba
1 changed files with 4 additions and 1 deletions
|
@ -16,7 +16,6 @@ use std::task::Poll;
|
||||||
use task::{ResolvedTask, TaskContext, TaskTemplate, TaskTemplates};
|
use task::{ResolvedTask, TaskContext, TaskTemplate, TaskTemplates};
|
||||||
use unindent::Unindent as _;
|
use unindent::Unindent as _;
|
||||||
use util::{assert_set_eq, paths::PathMatcher, test::temp_tree};
|
use util::{assert_set_eq, paths::PathMatcher, test::temp_tree};
|
||||||
use worktree::WorktreeModelHandle as _;
|
|
||||||
|
|
||||||
#[gpui::test]
|
#[gpui::test]
|
||||||
async fn test_block_via_channel(cx: &mut gpui::TestAppContext) {
|
async fn test_block_via_channel(cx: &mut gpui::TestAppContext) {
|
||||||
|
@ -2978,8 +2977,12 @@ async fn test_save_as(cx: &mut gpui::TestAppContext) {
|
||||||
assert_eq!(opened_buffer, buffer);
|
assert_eq!(opened_buffer, buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This test is currently disabled on Linux as it fails fails pretty consistently on that target.
|
||||||
|
#[cfg(not(target_os = "linux"))]
|
||||||
#[gpui::test(retries = 5)]
|
#[gpui::test(retries = 5)]
|
||||||
async fn test_rescan_and_remote_updates(cx: &mut gpui::TestAppContext) {
|
async fn test_rescan_and_remote_updates(cx: &mut gpui::TestAppContext) {
|
||||||
|
use worktree::WorktreeModelHandle as _;
|
||||||
|
|
||||||
init_test(cx);
|
init_test(cx);
|
||||||
cx.executor().allow_parking();
|
cx.executor().allow_parking();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue