drupalci.yml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. phplint:
  8. eslint:
  9. # A test must pass eslinting standards check in order to continue processing.
  10. halt-on-fail: false
  11. phpcs:
  12. # phpcs will use core's specified version of Coder.
  13. sniff-all-files: false
  14. halt-on-fail: false
  15. testing:
  16. # run_tests task is executed several times in order of performance speeds.
  17. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  18. # suppress-deprecations is false in order to be alerted to usages of
  19. # deprecated code.
  20. run_tests.phpunit:
  21. types: 'PHPUnit-Unit'
  22. testgroups: '--all'
  23. suppress-deprecations: false
  24. halt-on-fail: false
  25. run_tests.kernel:
  26. types: 'PHPUnit-Kernel'
  27. testgroups: '--all'
  28. suppress-deprecations: false
  29. halt-on-fail: false
  30. run_tests.simpletest:
  31. types: 'Simpletest'
  32. testgroups: '--all'
  33. suppress-deprecations: false
  34. halt-on-fail: false
  35. run_tests.build:
  36. # Limit concurrency due to disk space concerns.
  37. concurrency: 15
  38. types: 'PHPUnit-Build'
  39. testgroups: '--all'
  40. suppress-deprecations: false
  41. halt-on-fail: false
  42. run_tests.functional:
  43. types: 'PHPUnit-Functional'
  44. testgroups: '--all'
  45. suppress-deprecations: false
  46. halt-on-fail: false
  47. run_tests.javascript:
  48. concurrency: 15
  49. types: 'PHPUnit-FunctionalJavascript'
  50. testgroups: '--all'
  51. suppress-deprecations: false
  52. halt-on-fail: false
  53. # Run nightwatch testing.
  54. # @see https://www.drupal.org/project/drupal/issues/2869825
  55. nightwatchjs: