You are here

drupalci.yml in Handy cache tags 8

File

drupalci.yml
View source
  1. # This is the DrupalCI testbot build file.
  2. # Learn to make one for your own drupal.org project:
  3. # https://www.drupal.org/drupalorg/docs/drupal-ci/customizing-drupalci-testing
  4. build:
  5. assessment:
  6. validate_codebase:
  7. phplint:
  8. phpcs:
  9. # phpcs will use core's specified version of Coder.
  10. sniff-all-files: true
  11. halt-on-fail: true
  12. phpstan:
  13. halt-on-fail: true
  14. testing:
  15. # run_tests task is executed several times in order of performance speeds.
  16. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  17. # suppress-deprecations is false in order to be alerted to usages of
  18. # deprecated code.
  19. run_tests.phpunit:
  20. types: 'PHPUnit-Unit'
  21. testgroups: '--all'
  22. suppress-deprecations: false
  23. halt-on-fail: false
  24. run_tests.kernel:
  25. types: 'PHPUnit-Kernel'
  26. testgroups: '--all'
  27. suppress-deprecations: true
  28. halt-on-fail: false
  29. run_tests.simpletest:
  30. types: 'Simpletest'
  31. testgroups: '--all'
  32. suppress-deprecations: false
  33. halt-on-fail: false
  34. run_tests.functional:
  35. types: 'PHPUnit-Functional'
  36. testgroups: '--all'
  37. suppress-deprecations: false
  38. halt-on-fail: false
  39. # Functional JavaScript tests require a concurrency of 1 because there is
  40. # only one instance of PhantomJS on the testbot machine.
  41. run_tests.javascript:
  42. concurrency: 1
  43. types: 'PHPUnit-FunctionalJavascript'
  44. testgroups: '--all'
  45. suppress-deprecations: false
  46. halt-on-fail: false
  47. # Run nightwatch testing.
  48. # @see https://www.drupal.org/project/drupal/issues/2869825
  49. nightwatchjs: