From fd88e44b966e77fca1aa0eeded65aa3fad5c042e Mon Sep 17 00:00:00 2001 From: Vijay Janapa Reddi Date: Sun, 20 Jul 2025 12:59:54 -0400 Subject: [PATCH] Removes integration test execution Stops the automatic execution of the integration test. This change prevents the test from running every time the module is loaded, allowing for more focused and controlled testing. --- modules/source/08_dataloader/dataloader_dev.py | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/source/08_dataloader/dataloader_dev.py b/modules/source/08_dataloader/dataloader_dev.py index cdf039e7..7f02a50b 100644 --- a/modules/source/08_dataloader/dataloader_dev.py +++ b/modules/source/08_dataloader/dataloader_dev.py @@ -1085,7 +1085,6 @@ def test_module_dataloader_tensor_yield(): print("✅ Integration Test Passed: DataLoader correctly yields batches of Tensors.") -# Run the integration test test_module_dataloader_tensor_yield() # %% [markdown]