tests(odbc): skip ProjectModelTest::testCreationForAllLanguages due to bug in pdo_odbc

This commit is contained in:
Joe Nahmias 2022-10-19 22:00:13 -04:00 committed by Frédéric Guillot
parent ab353a3d8f
commit 8b550ff552
1 changed files with 4 additions and 0 deletions

View File

@ -27,6 +27,10 @@ class ProjectModelTest extends Base
public function testCreationForAllLanguages()
{
if ( 'odbc' === DB_DRIVER ) {
$this->markTestSkipped('Bug in pdo_odbc: <https://github.com/php/php-src/issues/9498>');
}
$projectModel = new ProjectModel($this->container);
foreach ($this->container['languageModel']->getLanguages() as $locale => $language) {