You are here

drupalci.yml in Image Effects 8.2

Same filename and directory in other branches
  1. 8.3 drupalci.yml
  2. 8 drupalci.yml

File

drupalci.yml
View source
  1. build:
  2. assessment:
  3. validate_codebase:
  4. phplint:
  5. csslint:
  6. halt-on-fail: false
  7. eslint:
  8. # A test must pass eslinting standards check in order to continue processing.
  9. halt-on-fail: false
  10. phpcs:
  11. # phpcs will use core's specified version of Coder.
  12. sniff-all-files: false
  13. halt-on-fail: false
  14. testing:
  15. # container commands below install the ImageMagick executable.
  16. container_command :
  17. commands:
  18. - "sudo apt-get update"
  19. - "sudo apt-get install -y imagemagick graphicsmagick"
  20. - "convert -version"
  21. - "gm -version"
  22. - "locale -a"
  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.phpunit:
  28. types: 'PHPUnit-Unit'
  29. testgroups: '--all'
  30. suppress-deprecations: true
  31. halt-on-fail: false
  32. run_tests.kernel:
  33. types: 'PHPUnit-Kernel'
  34. testgroups: '--all'
  35. suppress-deprecations: true
  36. halt-on-fail: false
  37. run_tests.functional:
  38. types: 'PHPUnit-Functional'
  39. testgroups: '--all'
  40. suppress-deprecations: true
  41. halt-on-fail: false
  42. # run_tests.javascript:
  43. # concurrency: 15
  44. # types: 'PHPUnit-FunctionalJavascript'
  45. # testgroups: '--all'
  46. # suppress-deprecations: false
  47. # halt-on-fail: false
  48. # Run nightwatch testing.
  49. # @see https://www.drupal.org/project/drupal/issues/2869825
  50. # nightwatchjs: