Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/IntegrationVerificationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
);
Expand Down Expand Up @@ -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,
);
Expand Down