Ilya Valyaev

Results 13 comments of Ilya Valyaev

> The "totals" may be not needed at results. It must be manipulated by input parameter. An extra data like additional "totals" entry can destroy existing applications. I thought about...

> > I thought about it, but I have no idea how not to break existing applications and add total output > > I added getTotals() method for the replaced...

https://github.com/FriendsOfDoctrine/dbal-clickhouse/pull/24

This is not the right behavior! You suggest to start migrations for test base so? export YII_ENV_TEST=false && php yii_test migrate --interactive=0

How can I run "php yii_test migrate" so that they return the exitcode=1 in case of an error?

wrote bash script ``` #!/usr/bin/env bash YII_TEST_MIGRATE=$(php yii_test migrate --interactive=0) if echo $YII_TEST_MIGRATE | grep 'Migrated up successfully.' -o || echo $YII_TEST_MIGRATE | grep 'No new migrations found. Your system...