You are here

drupalci.yml in Image Effects 8.3

Same filename and directory in other branches
  1. 8 drupalci.yml
  2. 8.2 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. phpstan:
  15. halt-on-fail: false
  16. testing:
  17. # container commands below install the ImageMagick executable.
  18. container_command :
  19. commands:
  20. - "sudo apt-get update"
  21. - "sudo apt-get install -y imagemagick graphicsmagick"
  22. - "convert -version"
  23. - "gm -version"
  24. - "locale -a"
  25. run_tests.phpunit:
  26. types: 'PHPUnit-Unit'
  27. testgroups: '--all'
  28. suppress-deprecations: true
  29. halt-on-fail: false
  30. run_tests.functional:
  31. types: 'PHPUnit-Functional'
  32. testgroups: '--all'
  33. suppress-deprecations: true
  34. halt-on-fail: false