Due to conflicting operations with databases, this bundle can trigger the following error with DAMADoctrineTestBundle:
Doctrine\DBAL\Driver\PDOException: SQLSTATE[42000]: Syntax error or access violation: 1305 SAVEPOINT DOCTRINE2_SAVEPOINT_2 does not exist
To avoid this, disable automatic changes to database and schema:
liip_test_fixtures:
keep_database_and_schema: true
You'll have to create database and update schema before running your tests on local environment or CI.
See this solution.
« Examples