drupal_tests icon indicating copy to clipboard operation
drupal_tests copied to clipboard

A docker container based for running Drupal tests in CircleCI

Results 14 drupal_tests issues
Sort by recently updated
recently updated
newest added

We attempted to use drupal_tests with an install profile as its own independent repo, and we've found that everything hard-codes the path to modules/repo-name including: - https://github.com/deviantintegral/drupal_tests/blob/master/hooks/RoboFile.php#L101 - https://github.com/deviantintegral/drupal_tests/blob/master/hooks/RoboFile.php#L193 -...

Currently if any patches applied via the patches.json in the module fail to apply, then the build still passes. We attempted to add `"composer-exit-on-patch-failure": true` to our module's composer.json file,...

This change landed in drupal/coder: https://www.drupal.org/node/3074176 that now provides the ability to override the extensions that should be scanned. We can remove the patch from https://github.com/deviantintegral/drupal_tests/blob/master/templates/module/patches.json and maybe we should...

As of Drupal 8.8.0, the dev dependencies have gone missing from CircleCI update-dependencies jobs. We may need to add drupal/core-dev to our required modules?

It seems that if we list a patch to drupal/core in our module's patches.json file, this does not actually get applied in the update-dependencies job, since drupal/core isn't actually managed...

Now that Drupal supports the previous release for security, we should enable testing against both the current and the previous core release.

If you have a testing matrix that tests against multiple versions of drupal, it would be nice to be able to set the drupal version via an environment variable. I...

Here's my initial work on making drupal_tests compatible with the correct composer-patches format, like reported in #47 . Includes changes: * Use the proper composer-patches format * Look for any...

At first thank you all for the great effort. I enjoy using `drupal_tests`. I created a custom module now, that required to patch a contrib module. For this I'm using...