File tree 2 files changed +5
-5
lines changed
api-functional/framework/Magento/TestFramework
integration/framework/Magento/TestFramework
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public function install()
33
33
34
34
/* Install application */
35
35
if ($ installOptions ) {
36
- $ installCmd = 'php -f ' . BP . '/bin/magento setup:install ' ;
36
+ $ installCmd = 'php -f ' . BP . '/bin/magento setup:install -vvv ' ;
37
37
$ installArgs = [];
38
38
foreach ($ installOptions as $ optionName => $ optionValue ) {
39
39
if (is_bool ($ optionValue )) {
Original file line number Diff line number Diff line change @@ -426,7 +426,7 @@ public function cleanup()
426
426
* @see \Magento\Setup\Mvc\Bootstrap\InitParamListener::BOOTSTRAP_PARAM
427
427
*/
428
428
$ this ->_shell ->execute (
429
- 'php -f %s setup:uninstall -n --magento-init-params=%s ' ,
429
+ 'php -f %s setup:uninstall -vvv - n --magento-init-params=%s ' ,
430
430
[BP . '/bin/magento ' , $ this ->getInitParamsQuery ()]
431
431
);
432
432
}
@@ -459,15 +459,15 @@ public function install()
459
459
460
460
// run install script
461
461
$ this ->_shell ->execute (
462
- 'php -f %s setup:install ' . implode (' ' , array_keys ($ installParams )),
462
+ 'php -f %s setup:install -vvv ' . implode (' ' , array_keys ($ installParams )),
463
463
array_merge ([BP . '/bin/magento ' ], array_values ($ installParams ))
464
464
);
465
465
466
466
// enable only specified list of caches
467
467
$ initParamsQuery = $ this ->getInitParamsQuery ();
468
- $ this ->_shell ->execute ('php -f %s cache:disable --bootstrap=%s ' , [BP . '/bin/magento ' , $ initParamsQuery ]);
468
+ $ this ->_shell ->execute ('php -f %s cache:disable -vvv - -bootstrap=%s ' , [BP . '/bin/magento ' , $ initParamsQuery ]);
469
469
$ this ->_shell ->execute (
470
- 'php -f %s cache:enable %s %s %s %s --bootstrap=%s ' ,
470
+ 'php -f %s cache:enable -vvv %s %s %s %s --bootstrap=%s ' ,
471
471
[
472
472
BP . '/bin/magento ' ,
473
473
\Magento \Framework \App \Cache \Type \Config::TYPE_IDENTIFIER ,
You can’t perform that action at this time.
0 commit comments