You are here

drupalci.yml in CDN 8.3

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. phpcs:
  6. sniff-all-files: true
  7. halt-on-fail: true
  8. phpstan:
  9. halt-on-fail: false
  10. testing:
  11. # run_tests task is executed several times in order of performance speeds.
  12. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  13. # suppress-deprecations is false in order to be alerted to usages of
  14. # deprecated code.
  15. run_tests.phpunit:
  16. types: 'PHPUnit-Unit'
  17. testgroups: '--all'
  18. suppress-deprecations: false
  19. halt-on-fail: false
  20. run_tests.kernel:
  21. types: 'PHPUnit-Kernel'
  22. testgroups: '--all'
  23. suppress-deprecations: false
  24. halt-on-fail: false
  25. run_tests.functional:
  26. types: 'PHPUnit-Functional'
  27. testgroups: '--all'
  28. suppress-deprecations: false
  29. halt-on-fail: false