You are here

drupalci.yml in Automatic Updates 8

Same filename and directory in other branches
  1. 8.2 drupalci.yml

File

drupalci.yml
View source
  1. # Learn to make one for your own drupal.org project:
  2. # https://www.drupal.org/drupalorg/docs/drupal-ci/customizing-drupalci-testing
  3. build:
  4. assessment:
  5. validate_codebase:
  6. phplint:
  7. phpcs:
  8. # phpcs will use core's specified version of Coder.
  9. sniff-all-files: true
  10. halt-on-fail: true
  11. testing:
  12. # run_tests task is executed several times in order of performance speeds.
  13. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  14. # suppress-deprecations is false in order to be alerted to usages of
  15. # deprecated code.
  16. run_tests.standard:
  17. types: 'PHPUnit-Unit,PHPUnit-Kernel,PHPUnit-Functional,PHPUnit-Build'
  18. testgroups: '--all'
  19. suppress-deprecations: false
  20. halt-on-fail: false