diff --git a/tests/Validation/ValidationTest.php b/tests/Validation/ValidationTest.php index 79ca6c8..1be9e69 100644 --- a/tests/Validation/ValidationTest.php +++ b/tests/Validation/ValidationTest.php @@ -30,8 +30,9 @@ class ValidationTest extends TestCase foreach (new RecursiveIteratorIterator($iterator) as $file) { if (strpos((string)$file, ".php") !== false) { - $totalSize += $file->getSize(); - $testProviderArray[$frameworkName . "::" . $file->getBasename()] = [$file->getPathname(), $frameworkName]; + if ($file->getSize() < 100000 ) { + $testProviderArray[$frameworkName . "::" . $file->getBasename()] = [$file->getPathname(), $frameworkName]; + } } } }