1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-06-27 16:36:00 +00:00

Skip database reset on partial test run

This commit is contained in:
Yassine Guedidi 2024-01-12 21:57:18 +01:00
parent db5aa62509
commit e2b8ff3dc0
3 changed files with 65 additions and 28 deletions

32
tests/functions.php Normal file
View file

@ -0,0 +1,32 @@
<?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;
}