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. # Re-run composer install to ensure the dependencies resolve for the
  9. # containerized PHP version.
  10. container_composer:
  11. options: ' install --prefer-dist --no-suggest --no-progress --no-interaction'
  12. halt-on-fail: true
  13. csslint:
  14. halt-on-fail: false
  15. eslint:
  16. # A test must pass eslinting standards check in order to continue processing.
  17. halt-on-fail: false
  18. phpcs:
  19. # phpcs will use core's specified version of Coder.
  20. sniff-all-files: false
  21. halt-on-fail: false
  22. testing:
  23. # run_tests task is executed several times in order of performance speeds.
  24. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  25. # suppress-deprecations is false in order to be alerted to usages of
  26. # deprecated code.
  27. run_tests.phpunit:
  28. types: 'PHPUnit-Unit'
  29. testgroups: '--all'
  30. suppress-deprecations: false
  31. halt-on-fail: false
  32. run_tests.kernel:
  33. types: 'PHPUnit-Kernel'
  34. testgroups: '--all'
  35. suppress-deprecations: false
  36. halt-on-fail: false
  37. run_tests.simpletest:
  38. types: 'Simpletest'
  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: