Adjust CI tests for enchant

This commit is contained in:
cytopia
2022-01-23 22:08:10 +01:00
parent 857900acc6
commit 40c3980b3e
6 changed files with 112 additions and 10 deletions

View File

@@ -7,6 +7,13 @@ ini_set('display_startup_errors', 1);
ini_set('display_errors', 1);
error_reporting(-1);
// FIXME: Currently disabled for PHP 7.3 and PHP 7.4
if (PHP_MAJOR_VERSION == 7) {
if (PHP_MINOR_VERSION == 3 || PHP_MINOR_VERSION == 4) {
echo 'SKIP';
exit(0);
}
}
$backend = 'aspell';