You are here

drupalci.yml in DBLog Filter 8.2

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. #csslint:
  14. #halt-on-fail: false
  15. #eslint:
  16. # A test must pass eslinting standards check in order to continue processing.
  17. #halt-on-fail: true
  18. phpcs:
  19. # phpcs will use core's specified version of Coder.
  20. sniff-all-files: true
  21. halt-on-fail: false
  22. testing:
  23. # run_tests task is executed several times in order of performance speeds.
  24. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  25. # suppress-deprecations is false in order to be alerted to usages of
  26. # deprecated code.
  27. run_tests.standard:
  28. types: 'Simpletest,PHPUnit-Unit,PHPUnit-Kernel,PHPUnit-Functional'
  29. testgroups: '--all'
  30. suppress-deprecations: false
  31. #run_tests.js:
  32. #types: 'PHPUnit-FunctionalJavascript'
  33. #testgroups: '--all'
  34. #suppress-deprecations: false
  35. #nightwatchjs: { }