- π¬π§United Kingdom Eli-T Manchester
Closing as the change in this MR is no longer appropriate, and the test it fixes has been fixed elsewhere (you can see this run in gitlab CI).
We are seeing this issue pop up our CI when we run
phpunit {{ project_path }}/web/modules/custom --testsuite=unit --filter={{ our module prefix }}
PHPUnit is grabbing all available tests and filtering them for our own, but the AwsCacheAdapterTest cannot load because it doesn't extend the normal Drupal UnitTestCase.
PHP Fatal error: Uncaught Error: Class "PHPUnit_Framework_TestCase" not found in /builds/{{ project_path }}/drupal/web/modules/contrib/flysystem_s3/tests/src/Unit/AwsCacheAdapterTest.php:13
Run phpunit unit tests on anything if flysystem_s3 is installed.
Have the test extend Drupal\Tests\UnitTestCase instead of the non existent PHPUnit_Framework_TestCase, remove the CacheInterface dependency on the AwsCacheAdapter.
See merge request.
Closed: outdated
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Closing as the change in this MR is no longer appropriate, and the test it fixes has been fixed elsewhere (you can see this run in gitlab CI).