mirror of
https://github.com/Icinga/icinga-php-thirdparty.git
synced 2025-08-20 09:08:17 +02:00
13 lines
261 B
PowerShell
13 lines
261 B
PowerShell
#$env:XDEBUG_MODE = "debug"
|
|
#$env:XDEBUG_SESSION = 1
|
|
|
|
# If no arguments, run all tests.
|
|
if (-not $args)
|
|
{
|
|
./vendor/bin/phpunit --stop-on-failure -c phpunit.xml.dist
|
|
}
|
|
else
|
|
{
|
|
./vendor/bin/phpunit --stop-on-failure -c phpunit.xml.dist --filter $args[0]
|
|
}
|