Skip to content

Commit

Permalink
Remove explicit setting of test env in bootstrap commands
Browse files Browse the repository at this point in the history
  • Loading branch information
yguedidi committed Jan 14, 2024
1 parent 205d1d5 commit 70c02e8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
__DIR__ . '/../bin/console',
'doctrine:database:drop',
'--force',
'--env=test',
]))->run(function ($type, $buffer) {
echo $buffer;
});
Expand All @@ -28,7 +27,6 @@
'php',
__DIR__ . '/../bin/console',
'doctrine:database:create',
'--env=test',
]))->mustRun(function ($type, $buffer) {
echo $buffer;
});
Expand All @@ -38,7 +36,6 @@
__DIR__ . '/../bin/console',
'doctrine:migrations:migrate',
'--no-interaction',
'--env=test',
'-vv',
]))->mustRun(function ($type, $buffer) {
echo $buffer;
Expand All @@ -49,7 +46,6 @@
__DIR__ . '/../bin/console',
'doctrine:fixtures:load',
'--no-interaction',
'--env=test',
]))->mustRun(function ($type, $buffer) {
echo $buffer;
});

0 comments on commit 70c02e8

Please sign in to comment.