Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
simba77 committed Mar 31, 2022
1 parent 8834d5c commit fcc0714
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/AbstractTestCase.php
Expand Up @@ -32,8 +32,12 @@ public function __construct(?string $name = null, array $data = [], $dataName =

public function runMigrations()
{
$migrations = new Migration();
$migrations->run();
// Temporary fix for multiple simultaneous run
try {
$migrations = new Migration();
$migrations->run();
} catch (\Throwable) {
}
}

public function dropTables()
Expand Down

0 comments on commit fcc0714

Please sign in to comment.