You are here

drupalci.yml in Datetime Extras 8

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. 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