From 544c19da37591bddc58f3d54a8d81c10572f7f70 Mon Sep 17 00:00:00 2001 From: i-just Date: Fri, 24 Apr 2026 14:20:14 +0200 Subject: [PATCH] don't use php.ini file for the command --- tests/Feature/Database/BackupsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/Database/BackupsTest.php b/tests/Feature/Database/BackupsTest.php index a7d56358492..7777bd962dd 100644 --- a/tests/Feature/Database/BackupsTest.php +++ b/tests/Feature/Database/BackupsTest.php @@ -30,7 +30,7 @@ function backupsTestPhpCommand(string $script, array $args = []): string { - $command = escapeshellarg(PHP_BINARY).' -r '.escapeshellarg($script); + $command = escapeshellarg(PHP_BINARY).' -n -r '.escapeshellarg($script); foreach ($args as $arg) { $command .= ' '.$arg;