You are here

drupalci.yml in Honeypot 2.0.x

Same filename and directory in other branches
  1. 8 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. container_composer:
  8. phpcs:
  9. # phpcs will use core's specified version of Coder.
  10. sniff-all-files: true
  11. halt-on-fail: false
  12. testing:
  13. # run_tests task is executed several times in order of performance speeds.
  14. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  15. # suppress-deprecations is false in order to be alerted to usages of
  16. # deprecated code.
  17. run_tests.standard:
  18. types: 'Simpletest,PHPUnit-Unit,PHPUnit-Kernel,PHPUnit-Functional'
  19. testgroups: '--all'
  20. suppress-deprecations: false
  21. run_tests.js:
  22. types: 'PHPUnit-FunctionalJavascript'
  23. testgroups: '--all'
  24. suppress-deprecations: false
  25. nightwatchjs: { }