drupalci.yml

Same filename in other branches
  1. 8.9.x core/drupalci.yml
  2. 10 core/drupalci.yml
  3. 11.x core/drupalci.yml
core/drupalci.yml

File

core/drupalci.yml

View source
  1. # This is the DrupalCI testbot build file for Drupal core.
  2. # Learn to make one for your own drupal.org project:
  3. # https://www.drupal.org/drupalorg/docs/drupal-ci/customizing-drupalci-testing
  4. _phpunit_testgroups_to_execute: &testgroups
  5. # Default: all of Drupal core's test suite runs.
  6. testgroups: '--all'
  7. # Alternative: run only the tests for one particular module.
  8. # testgroups: '--module ckeditor5'
  9. build:
  10. assessment:
  11. testing:
  12. # Run code quality checks.
  13. container_command.commit-checks:
  14. commands:
  15. - "core/scripts/dev/commit-code-check.sh --drupalci"
  16. halt-on-fail: true
  17. # run_tests task is executed several times in order of performance speeds.
  18. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  19. # suppress-deprecations is false in order to be alerted to usages of
  20. # deprecated code.
  21. run_tests.phpunit:
  22. types: 'PHPUnit-Unit'
  23. suppress-deprecations: false
  24. halt-on-fail: false
  25. <<: *testgroups
  26. run_tests.kernel:
  27. types: 'PHPUnit-Kernel'
  28. suppress-deprecations: false
  29. halt-on-fail: false
  30. <<: *testgroups
  31. run_tests.build:
  32. # Limit concurrency due to disk space concerns.
  33. concurrency: 15
  34. types: 'PHPUnit-Build'
  35. suppress-deprecations: false
  36. halt-on-fail: false
  37. <<: *testgroups
  38. run_tests.functional:
  39. types: 'PHPUnit-Functional'
  40. suppress-deprecations: false
  41. halt-on-fail: false
  42. <<: *testgroups
  43. run_tests.javascript:
  44. concurrency: 15
  45. types: 'PHPUnit-FunctionalJavascript'
  46. suppress-deprecations: false
  47. halt-on-fail: false
  48. <<: *testgroups
  49. # Run nightwatch testing.
  50. # @see https://www.drupal.org/project/drupal/issues/2869825
  51. nightwatchjs: {}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.