Ensure PHP assertions are enabled in test environments

Created on 16 January 2025, 3 months ago

Problem/Motivation

Over in 📌 PHP asserts not running in CI/during tests Active we've discovered that assert() is currently disabled in CI test runs, which means when we use asserts that fail on developer machines they aren't caught in CI.

Steps to reproduce

Add assert(FALSE); to a module and run it under CI.

Proposed resolution

📌 Remove mentions of assert.active from .htaccess Needs work has some notes on this, the suggested solution for CI is to append the following to .htaccess:

<IfModule mod_php.c>
  php_value zend.assertions                   1
  # Revert this part when https://www.drupal.org/project/drupal/issues/3398033 is fixed in Drupal core.
  php_value assert.active                   1
</IfModule>

Remaining tasks

User interface changes

API changes

Data model changes

📌 Task
Status

Active

Component

gitlab-ci

Created by

🇬🇧United Kingdom longwave UK

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024