You are here

drupalci.yml in Block Style Plugins 8.2

File

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. build:
  5. assessment:
  6. validate_codebase:
  7. # Core's code quality is checked by container_command.commit_checks.
  8. testing:
  9. # Run code quality checks.
  10. # container_command.commit-checks:
  11. # commands:
  12. # - "core/scripts/dev/commit-code-check.sh --drupalci"
  13. # halt-on-fail: true
  14. # Patch Core.
  15. container_command:
  16. commands:
  17. - "cd ${SOURCE_DIR} && sudo -u www-data curl https://www.drupal.org/files/issues/2021-01-29/3015152-tps-114.patch | git apply -"
  18. halt-on-fail: true
  19. # run_tests task is executed several times in order of performance speeds.
  20. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  21. # suppress-deprecations is false in order to be alerted to usages of
  22. # deprecated code.
  23. run_tests.phpunit:
  24. types: 'PHPUnit-Unit'
  25. testgroups: '--all'
  26. suppress-deprecations: false
  27. halt-on-fail: false
  28. run_tests.kernel:
  29. types: 'PHPUnit-Kernel'
  30. testgroups: '--all'
  31. suppress-deprecations: false
  32. halt-on-fail: false
  33. run_tests.build:
  34. # Limit concurrency due to disk space concerns.
  35. concurrency: 15
  36. types: 'PHPUnit-Build'
  37. testgroups: '--all'
  38. suppress-deprecations: false
  39. halt-on-fail: false
  40. run_tests.functional:
  41. types: 'PHPUnit-Functional'
  42. testgroups: '--all'
  43. suppress-deprecations: false
  44. halt-on-fail: false
  45. run_tests.javascript:
  46. concurrency: 15
  47. types: 'PHPUnit-FunctionalJavascript'
  48. testgroups: '--all'
  49. suppress-deprecations: false
  50. halt-on-fail: false
  51. # Run nightwatch testing.
  52. # @see https://www.drupal.org/project/drupal/issues/2869825
  53. # nightwatchjs: