Skipping PostgreSQL test that drop database

For a not-clear reason, I can't properly drop the current database. Even if Doctrine made a special case for that (https://github.com/doctrine/dbal/pull/849).

So instead of trying crazy things to achieve the test, better way is to skip test (too much wasted days ..)
This commit is contained in:
Jeremy Benoist
2015-11-06 22:08:51 +01:00
parent 8a493541fa
commit d502762598
3 changed files with 46 additions and 28 deletions

View File

@ -15,6 +15,8 @@ abstract class WallabagCoreTestCase extends WebTestCase
public function setUp()
{
parent::setUp();
$this->client = static::createClient();
}