Skip to content

Commit

Permalink
Do not parse system INI files during tests
Browse files Browse the repository at this point in the history
This is because in GitHub workflows Xdebug is apparently already loaded.
  • Loading branch information
cyrus-and committed Sep 23, 2023
1 parent 9a9c92e commit 18578d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ run-suite() {
start-server() {
trap 'kill "$server_pid" &>/dev/null' TERM
echo "# Starting PHP server..."
php -d "zend_extension=$root/ext/xdebug/modules/xdebug.so" -S localhost:8080 -t php &>/dev/null & server_pid=$!
php -n -d "zend_extension=$root/ext/xdebug/modules/xdebug.so" -S localhost:8080 -t php &>/dev/null & server_pid=$!
wait
}

Expand Down

0 comments on commit 18578d3

Please sign in to comment.