From 808822ca93605e8e4d9f92aab066f5e91c3b064d Mon Sep 17 00:00:00 2001 From: Yuvraj Date: Tue, 9 Dec 2025 20:56:41 +0530 Subject: [PATCH] feat: gate fuzz tests behind extended_tests feature for faster default test runs --- datafusion/core/tests/fuzz.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/datafusion/core/tests/fuzz.rs b/datafusion/core/tests/fuzz.rs index 92646e8b37636..5e94f12b5805d 100644 --- a/datafusion/core/tests/fuzz.rs +++ b/datafusion/core/tests/fuzz.rs @@ -15,7 +15,10 @@ // specific language governing permissions and limitations // under the License. -/// Run all tests that are found in the `fuzz_cases` directory +/// Run all tests that are found in the `fuzz_cases` directory. +/// Fuzz tests are slow and gated behind the `extended_tests` feature. +/// Run with: cargo test --features extended_tests +#[cfg(feature = "extended_tests")] mod fuzz_cases; #[cfg(test)]