You are here

drupalci.yml in Markdown 8.2

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