diff --git a/tests/IntegrationVerificationTest.php b/tests/IntegrationVerificationTest.php index 3fc41d95..d7e7416c 100644 --- a/tests/IntegrationVerificationTest.php +++ b/tests/IntegrationVerificationTest.php @@ -106,7 +106,7 @@ function copyTree(string $source, string $destination): void // Step 3: Run test suite (exclude destructive group to avoid recursion) exec( - 'cd ' . escapeshellarg($root) . ' && ' . $php . ' vendor/bin/pest --parallel --exclude-group=integration-destructive 2>&1', + 'cd ' . escapeshellarg($root) . ' && ' . $php . ' -d memory_limit=2G vendor/bin/pest --parallel --exclude-group=integration-destructive 2>&1', $testOutput, $testExit, ); @@ -159,7 +159,7 @@ function copyTree(string $source, string $destination): void exec( 'cd ' . escapeshellarg( $root - ) . ' && ' . $php . ' vendor/bin/pest --parallel --exclude-group=integration-destructive 2>&1', + ) . ' && ' . $php . ' -d memory_limit=2G vendor/bin/pest --parallel --exclude-group=integration-destructive 2>&1', $output, $exitCode, );