Skip to content

Commit

Permalink
Fix missing configs when running in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
colinodell committed Dec 7, 2024
1 parent f6d41f9 commit 1f90197
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/pathological/test.php
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@
}

if (isset($_ENV['CI']) || isset($_SERVER['CI'])) {
$command = ['php', 'convert.php'];
$command = ['php', 'convert.php', \json_encode($case['configuration'] ?? [])];
} else {
$command = ['php', '-n', 'convert.php', \json_encode($case['configuration'] ?? [])];
}
Expand Down

0 comments on commit 1f90197

Please sign in to comment.