File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,13 @@ jobs:
114
114
cd ~/drupal
115
115
COMPOSER_MEMORY_LIMIT=-1 composer require drupal/token drupal/blazy
116
116
./vendor/bin/phpstan analyze web/modules/contrib/blazy --no-progress || if (($? == 255)); then false; else true; fi
117
+ COMPOSER_MEMORY_LIMIT=-1 composer remove drupal/token drupal/blazy
118
+ - name : ' Check "Cannot redeclare video_embed_media_media_bundle_insert()"'
119
+ run : |
120
+ cd ~/drupal
121
+ COMPOSER_MEMORY_LIMIT=-1 composer require drupal/video_embed_field drupal/slick
122
+ ./vendor/bin/phpstan analyze web/modules/contrib --no-progress || if (($? == 255)); then false; else true; fi
123
+ COMPOSER_MEMORY_LIMIT=-1 composer remove drupal/video_embed_field drupal/slick
117
124
build_integration_no_phpunit :
118
125
continue-on-error : ${{ matrix.experimental }}
119
126
runs-on : " ubuntu-latest"
Original file line number Diff line number Diff line change @@ -91,9 +91,7 @@ public function register(Container $container): void
91
91
92
92
$ this ->moduleData = array_merge ($ this ->extensionDiscovery ->scan ('module ' ), $ profiles );
93
93
usort ($ this ->moduleData , static function (Extension $ a , Extension $ b ) {
94
- // revert for test.
95
- return $ a ->getName () === 'blazy_test ' ? 10 : 0 ;
96
- // return strpos($a->getName(), '_test') !== false ? 10 : 0;
94
+ return strpos ($ a ->getName (), '_test ' ) !== false ? 10 : 0 ;
97
95
});
98
96
$ this ->themeData = $ this ->extensionDiscovery ->scan ('theme ' );
99
97
$ this ->addTestNamespaces ();
You can’t perform that action at this time.
0 commit comments