diff --git a/test/phpunit/LangTest.php b/test/phpunit/LangTest.php index 2acecab4545..7f7872351b4 100644 --- a/test/phpunit/LangTest.php +++ b/test/phpunit/LangTest.php @@ -94,6 +94,9 @@ class LangTest extends CommonClassTest if (! preg_match('/^[a-z]+_[A-Z]+$/', $code)) { continue; } + if (in_array($code, array('mk_MK'))) { // We exclude some language not yet ready + continue; + } $langCodes[$code] = [$code]; } return $langCodes;