drupalci.yml 1.9 KB

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