You are here

drupalci.yml in Viewfield 8.3

File

drupalci.yml
View source
  1. # This file customizes the steps that DrupalCI will use when testing this project.
  2. #
  3. # The primary customization provided here is to check for deprecation errors. It is recommended
  4. # to do this only when you've used https://github.com/mglaman/drupal-check/ to verify any
  5. # existing deprecation errors are addressed.
  6. #
  7. # Learn to make one for your own drupal.org project:
  8. # https://www.drupal.org/drupalorg/docs/drupal-ci/customizing-drupalci-testing
  9. build:
  10. assessment:
  11. validate_codebase:
  12. phplint:
  13. container_composer:
  14. phpcs:
  15. # phpcs will use core's specified version of Coder.
  16. sniff-all-files: true
  17. halt-on-fail: false
  18. testing:
  19. # run_tests task is executed several times in order of performance speeds.
  20. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  21. # suppress-deprecations is false in order to be alerted to usages of
  22. # deprecated code.
  23. run_tests.standard:
  24. types: 'Simpletest,PHPUnit-Unit,PHPUnit-Kernel,PHPUnit-Functional'
  25. testgroups: '--all'
  26. suppress-deprecations: false
  27. run_tests.js:
  28. types: 'PHPUnit-FunctionalJavascript'
  29. testgroups: '--all'
  30. suppress-deprecations: false
  31. nightwatchjs: { }