mirror of
https://github.com/wallabag/wallabag.git
synced 2025-08-01 17:38:38 +00:00
Run tests in no debug mode
This commit is contained in:
parent
65ed401296
commit
6d38e0533f
4 changed files with 10 additions and 1 deletions
|
@ -14,6 +14,7 @@ if (!isPartialRun()) {
|
|||
'doctrine:database:drop',
|
||||
'--force',
|
||||
'--env=test',
|
||||
'--no-debug',
|
||||
]))->run(function ($type, $buffer) {
|
||||
echo $buffer;
|
||||
});
|
||||
|
@ -23,6 +24,7 @@ if (!isPartialRun()) {
|
|||
__DIR__ . '/../bin/console',
|
||||
'doctrine:database:create',
|
||||
'--env=test',
|
||||
'--no-debug',
|
||||
]))->mustRun(function ($type, $buffer) {
|
||||
echo $buffer;
|
||||
});
|
||||
|
@ -33,6 +35,7 @@ if (!isPartialRun()) {
|
|||
'doctrine:migrations:migrate',
|
||||
'--no-interaction',
|
||||
'--env=test',
|
||||
'--no-debug',
|
||||
'-vv',
|
||||
]))->mustRun(function ($type, $buffer) {
|
||||
echo $buffer;
|
||||
|
@ -45,6 +48,7 @@ if (!isPartialRun()) {
|
|||
'doctrine:fixtures:load',
|
||||
'--no-interaction',
|
||||
'--env=test',
|
||||
'--no-debug',
|
||||
]))->mustRun(function ($type, $buffer) {
|
||||
echo $buffer;
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue