You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
I want to start by apologizing if this isn't the correct method for sharing this information, or if this is out-of-scope for the project, but I was unable to find any resources anywhere to help me track down why I was having this issue.
Using this project to create a Drupal 9 site is pretty straightforward - you just update a couple version constraints in the composer.json file, but one issue I ran into for a few hours was getting the static tests to work.
Turns out, Drupal 9 adds /web/core/includes/bootstrap.inc to your composer's autoload_files.php. When running the git clean -fdX web command, this file is deleted and composer freaks out when trying to autoload it.
To get around this for now, I modified /.ci/test/static/run to git clean -fdX the libraries, modules, profiles, sites, and themes directories individually and left core alone.
The text was updated successfully, but these errors were encountered:
I want to start by apologizing if this isn't the correct method for sharing this information, or if this is out-of-scope for the project, but I was unable to find any resources anywhere to help me track down why I was having this issue.
Using this project to create a Drupal 9 site is pretty straightforward - you just update a couple version constraints in the composer.json file, but one issue I ran into for a few hours was getting the static tests to work.
Turns out, Drupal 9 adds
/web/core/includes/bootstrap.inc
to your composer's autoload_files.php. When running thegit clean -fdX web
command, this file is deleted and composer freaks out when trying to autoload it.To get around this for now, I modified /.ci/test/static/run to
git clean -fdX
the libraries, modules, profiles, sites, and themes directories individually and left core alone.The text was updated successfully, but these errors were encountered: