drupalci.yml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # This is the DrupalCI testbot build file for Configuration Update Manager.
  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. phplint:
  8. phpcs:
  9. # phpcs will use core's specified version of Coder.
  10. sniff-all-files: true
  11. halt-on-fail: true
  12. testing:
  13. # run_tests task is executed several times in order of performance speeds.
  14. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  15. # suppress-deprecations is false in order to be alerted to usages of
  16. # deprecated code.
  17. run_tests.phpunit:
  18. types: 'PHPUnit-Unit'
  19. testgroups: '--all'
  20. suppress-deprecations: false
  21. halt-on-fail: false
  22. run_tests.kernel:
  23. types: 'PHPUnit-Kernel'
  24. testgroups: '--all'
  25. suppress-deprecations: false
  26. halt-on-fail: false
  27. run_tests.functional:
  28. types: 'PHPUnit-Functional'
  29. testgroups: '--all'
  30. suppress-deprecations: false
  31. halt-on-fail: false
  32. run_tests.javascript:
  33. concurrency: 15
  34. types: 'PHPUnit-FunctionalJavascript'
  35. testgroups: '--all'
  36. suppress-deprecations: false
  37. halt-on-fail: false