You are here

drupalci.yml in Image Style Warmer 8

File

drupalci.yml
View source
  1. # This is the DrupalCI testbot build file for the image_style_warmer module.
  2. build:
  3. assessment:
  4. validate_codebase:
  5. phplint:
  6. csslint:
  7. halt-on-fail: false
  8. # eslint:
  9. # # A test must pass eslinting standards check in order to continue processing.
  10. # halt-on-fail: true
  11. phpcs:
  12. # phpcs will use core's specified version of Coder.
  13. sniff-all-files: false
  14. halt-on-fail: false
  15. testing:
  16. # run_tests task is executed several times in order of performance speeds.
  17. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  18. # suppress-deprecations is false in order to be alerted to usages of
  19. # deprecated code.
  20. # run_tests.phpunit:
  21. # types: 'PHPUnit-Unit'
  22. # testgroups: '--all'
  23. # suppress-deprecations: false
  24. # halt-on-fail: false
  25. # run_tests.kernel:
  26. # types: 'PHPUnit-Kernel'
  27. # testgroups: '--all'
  28. # suppress-deprecations: false
  29. # halt-on-fail: false
  30. # run_tests.simpletest:
  31. # types: 'Simpletest'
  32. # testgroups: '--all'
  33. # suppress-deprecations: false
  34. # halt-on-fail: false
  35. run_tests.functional:
  36. types: 'PHPUnit-Functional'
  37. testgroups: '--all'
  38. suppress-deprecations: false
  39. halt-on-fail: false
  40. # Functional JavaScript tests require a concurrency of 1 because there is
  41. # only one instance of PhantomJS on the testbot machine.
  42. # run_tests.javascript:
  43. # concurrency: 1
  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: