You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I upgraded to Cakephp 5 including Phpunit10 and your plugins:
"vierge-noire/cakephp-fixture-factories": "^3.0",
"vierge-noire/cakephp-test-suite-light": "^3.0"
After upgrading and running the tests I now get duplicate key errors.
I have multiple db connections.
In my test/bootstrap.php I start the migrations like this: $migrator->runMany([ ['connection' => 'test'], ['connection' => 'test_logs', 'source' => 'MigrationsLogs'], ], false);
I have analyzed the problem so far:
On my second test-db test_logs all the logic for truncating the tables isn't executed at all.
the Procedure TruncateDirtyTable is not created
the table test_suite_light_dirty_tables is not existing
the Triggers for the tables aren't created
The text was updated successfully, but these errors were encountered:
Hello,
I upgraded to Cakephp 5 including Phpunit10 and your plugins:
"vierge-noire/cakephp-fixture-factories": "^3.0",
"vierge-noire/cakephp-test-suite-light": "^3.0"
After upgrading and running the tests I now get duplicate key errors.
I have multiple db connections.
In my test/bootstrap.php I start the migrations like this:
$migrator->runMany([ ['connection' => 'test'], ['connection' => 'test_logs', 'source' => 'MigrationsLogs'], ], false);
I have analyzed the problem so far:
On my second test-db
test_logs
all the logic for truncating the tables isn't executed at all.The text was updated successfully, but these errors were encountered: