- last update
over 1 year ago CI error - π³πΏNew Zealand quietone
Just a reroll. And type to run just the Build tests.
- last update
over 1 year ago 29,882 pass, 2 fail The last submitted patch, 41: 3082230-41.patch, failed testing. View results β
- last update
over 1 year ago 85 pass, 1 fail - π³πΏNew Zealand quietone
I noticed that other quickstart tests are checking the sqlite version, so I copied that code block to these tests. Also, updated version numbers.
Local testing isn't working for me because I use a personal git hook and that causes failures for chmod. I haven't looked closely but it may be because it is a symbolic link.
The last submitted patch, 43: 3082230-43.patch, failed testing. View results β
- π³πΏNew Zealand quietone
I don't know why this is failing with
1) Drupal\BuildTests\Update\UpdateSiteDrushTest::testSiteUpdateWithDrush with data set "12.x" ('drush/drush:12.x') Failed asserting that ' You are about to:\n * Create a sites/default/settings.php file\n * CREATE the 'db.sqlite' database.\n \n // Do you want to continue?: yes. \n \n ' contains "Installation complete.".
what it should be non-interactive,
$this->executeCommand('drush site-install --db-url=sqlite://db.sqlite -y');
. - last update
over 1 year ago 85 pass, 1 fail The last submitted patch, 46: 3082230-46.patch, failed testing. View results β
- last update
over 1 year ago 85 pass, 1 fail - last update
over 1 year ago CI aborted - π³πΏNew Zealand quietone
Well, that is a different error than what I get locally.
The last submitted patch, 48: 3082230-48.patch, failed testing. View results β
- Status changed to Needs work
over 1 year ago 10:09am 28 July 2023 - π³πΏNew Zealand quietone
Moved past that error and on to a new one.
1) Drupal\BuildTests\Update\UpdateSiteDrushTest::testSiteUpdateWithDrush with data set "12.x" ('drush/drush:12.x') COMMAND: drush updb -y OUTPUT: ERROR: PHP Fatal error: Declaration of Drush\Command\DrushInputAdapter::getFirstArgument() must be compatible with Symfony\Component\Console\Input\InputInterface::getFirstArgument(): ?string in phar:///usr/local/bin/drush/lib/Drush/Command/DrushInputAdapter.php on line 54 Drush command terminated abnormally due to an unrecoverable error. οΏ½[31;40mοΏ½[1m[error]οΏ½[0m Error: Declaration of Drush\Command\DrushInputAdapter::getFirstArgument() must be compatible with Symfony\Component\Console\Input\InputInterface::getFirstArgument(): ?string in phar:///usr/local/bin/drush/lib/Drush/Command/DrushInputAdapter.php, line 54
Should it not be using vendor/bin/drush?
DrushInputAdapter was Removed from Drush in 2017.
- Status changed to Active
over 1 year ago 7:12am 30 July 2023 - π³πΏNew Zealand quietone
I moved the Drush test to π Add BuildTest for testing update using Drush Active , with links to the core ideas issue about adding drush.
And the quickstart tests to π Add BuildTest for testing Quickstart install and update Needs workI think Drupal\Tests\Scripts\TestSiteApplicationTest is covered by π TestSiteApplicationTest requires a database despite being a unit test Needs work
Changing to active because the patches have moved to other issues.
+++ b/core/tests/Drupal/BuildTests/Framework/BuildTestBase.php @@ -155,7 +155,6 @@ abstract class BuildTestBase extends TestCase { - $this->phpFinder = new PhpExecutableFinder();
This is the only change that is not yet in another issue. This currently an unused property.
- π³πΏNew Zealand quietone