The next daily-master-qa tarball will have phpunit v8. Nightly app CI will run with that.
1) Check for any PHP unit test fails in apps, and fix them
2) In vendor-bin/behat/composer.json bump phpunit to 8.5
3) Check acceptance test app code for uses of PHPUnit\Framework\Assert::assertContains and change to PHPUnit\Framework\Assert::assertStringContainsString when the "haystack" is a string.
e.g. https://github.com/owncloud/activity/pull/853
PR https://github.com/owncloud/core/pull/37307 bumped phpunit from v7 to v8 in core.
The next
daily-master-qa
tarball will havephpunit
v8. Nightly app CI will run with that.1) Check for any PHP unit test fails in apps, and fix them 2) In
vendor-bin/behat/composer.json
bumpphpunit
to 8.5 3) Check acceptance test app code for uses ofPHPUnit\Framework\Assert::assertContains
and change toPHPUnit\Framework\Assert::assertStringContainsString
when the "haystack" is a string. e.g. https://github.com/owncloud/activity/pull/853