Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1.22 KB

CONTRIBUTING.md

File metadata and controls

39 lines (27 loc) · 1.22 KB

Contributing

Features and bug fixes are welcome! First-time contributors can jump in with the issues tagged good first issue.

Testing

Testing is performed automatically in Github Actions when a PR is submitted. To execute tests locally before submitting a PR, you'll need Docker and Docker Compose.

Configure your test environment:

export PHP_VERSION=8.3
export DRUPAL_VERSION=11
export DOCKER_USER_ID=${UID}

Prepare environment for testing:

docker compose up -d
docker compose exec -T php composer self-update
docker compose exec -u ${DOCKER_USER_ID} -T php composer require --no-interaction --dev --no-update drupal/core:^${DRUPAL_VERSION}
docker compose exec -T php composer install

Execute all tests:

docker compose exec -T php composer test

Execute specific tests, eg just PHPUnit's Drupal7FieldHandlerTest:

docker compose exec -T php phpunit --filter Drupal7FieldHandlerTest
  • Check the changes from composer require are not included in your submitted PR.
  • Before testing another PHP or Drupal version, remove composer.lock and vendor/