mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-01 06:39:18 +00:00
32 lines
757 B
PHP
32 lines
757 B
PHP
<?php
|
|
|
|
/*
|
|
* This files contains functions that are used in the tests, especially the bootstrap.php file.
|
|
*/
|
|
|
|
/**
|
|
* Returns true if the current test run is a partial run.
|
|
* A partial run is a run that only runs a subset of the tests using the --filter, --testsuite, --group or --exclude-group options.
|
|
*/
|
|
function isPartialRun(): bool
|
|
{
|
|
foreach ($_SERVER['argv'] as $arg) {
|
|
if (str_starts_with($arg, '--filter')) {
|
|
return true;
|
|
}
|
|
|
|
if (str_starts_with($arg, '--testsuite')) {
|
|
return true;
|
|
}
|
|
|
|
if (str_starts_with($arg, '--group')) {
|
|
return true;
|
|
}
|
|
|
|
if (str_starts_with($arg, '--exclude-group')) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|