From 3c84754c1fdc92112e4e32de15b2336deab0c0ce Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Mon, 24 Nov 2025 18:07:41 +1000 Subject: [PATCH] disable automatic test discovery --- src/SharpIDE.Godot/Features/TestExplorer/TestExplorerPanel.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/SharpIDE.Godot/Features/TestExplorer/TestExplorerPanel.cs b/src/SharpIDE.Godot/Features/TestExplorer/TestExplorerPanel.cs index f8543d3..86187ce 100644 --- a/src/SharpIDE.Godot/Features/TestExplorer/TestExplorerPanel.cs +++ b/src/SharpIDE.Godot/Features/TestExplorer/TestExplorerPanel.cs @@ -29,7 +29,8 @@ public partial class TestExplorerPanel : Control private async Task AsyncReady() { - await DiscoverTestNodesForSolution(false); + // Until this is finished/optimised to handle lots of tests, require manual refresh + //await DiscoverTestNodesForSolution(false); } private void OnRefreshButtonPressed()