You are here

drupalci.yml in Config override 8

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. # @see https://www.drupal.org/drupalorg/docs/drupal-ci/customizing-drupalci-testing
  4. # @see https://git.drupalcode.org/project/drupal/blob/HEAD/core/drupalci.yml
  5. build:
  6. assessment:
  7. validate_codebase:
  8. phplint:
  9. # csslint:
  10. # halt-on-fail: false
  11. # eslint:
  12. # # A test must pass eslinting standards check in order to continue processing.
  13. # halt-on-fail: false
  14. phpcs:
  15. # phpcs will use core's specified version of Coder.
  16. sniff-all-files: false
  17. halt-on-fail: false
  18. testing:
  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: true
  27. halt-on-fail: false
  28. run_tests.kernel:
  29. types: 'PHPUnit-Kernel'
  30. testgroups: '--all'
  31. suppress-deprecations: true
  32. halt-on-fail: false
  33. run_tests.simpletest:
  34. types: 'Simpletest'
  35. testgroups: '--all'
  36. suppress-deprecations: true
  37. halt-on-fail: false
  38. run_tests.build:
  39. types: 'PHPUnit-Build'
  40. testgroups: '--all'
  41. suppress-deprecations: true
  42. halt-on-fail: false
  43. run_tests.functional:
  44. types: 'PHPUnit-Functional'
  45. testgroups: '--all'
  46. suppress-deprecations: true
  47. halt-on-fail: false
  48. #run_tests.javascript:
  49. # concurrency: 15
  50. # types: 'PHPUnit-FunctionalJavascript'
  51. # testgroups: '--all'
  52. # suppress-deprecations: true
  53. # halt-on-fail: false
  54. # Run nightwatch testing.
  55. # @see https://www.drupal.org/project/drupal/issues/2869825
  56. # @see https://www.drupal.org/drupalorg/docs/drupal-ci/customizing-drupalci-testing-for-projects#s-disabling-plugins
  57. # nightwatchjs: