You are here

drupalci.yml in Lightweight Directory Access Protocol (LDAP) 8.4

File

drupalci.yml
View source
  1. # https://www.drupal.org/drupalorg/docs/drupal-ci/customizing-drupalci-testing
  2. build:
  3. assessment:
  4. validate_codebase:
  5. phplint:
  6. csslint:
  7. halt-on-fail: false
  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: true
  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. types: 'PHPUnit-Build'
  37. testgroups: '--all'
  38. suppress-deprecations: false
  39. halt-on-fail: false
  40. run_tests.functional:
  41. types: 'PHPUnit-Functional'
  42. testgroups: '--all'
  43. suppress-deprecations: false
  44. halt-on-fail: false
  45. run_tests.javascript:
  46. concurrency: 15
  47. types: 'PHPUnit-FunctionalJavascript'
  48. testgroups: '--all'
  49. suppress-deprecations: false
  50. halt-on-fail: false