You are here

drupalci.yml in Gatsby Live Preview & Incremental Builds 2.0.x

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

File

drupalci.yml
View source
  1. build:
  2. assessment:
  3. validate_codebase:
  4. phplint:
  5. csslint:
  6. halt-on-fail: true
  7. # eslint:
  8. # # A test must pass eslinting standards check in order to continue processing.
  9. # halt-on-fail: true
  10. phpcs:
  11. # phpcs will use core's specified version of Coder.
  12. sniff-all-files: false
  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: false
  28. halt-on-fail: false
  29. run_tests.functional:
  30. types: 'PHPUnit-Functional'
  31. testgroups: '--all'
  32. suppress-deprecations: false
  33. halt-on-fail: false
  34. # Functional JavaScript tests require a concurrency of 1 because there is
  35. # only one instance of PhantomJS on the testbot machine.
  36. # run_tests.javascript:
  37. # concurrency: 1
  38. # types: 'PHPUnit-FunctionalJavascript'
  39. # testgroups: '--all'
  40. # suppress-deprecations: false
  41. # halt-on-fail: false
  42. # Run nightwatch testing.
  43. # @see https://www.drupal.org/project/drupal/issues/2869825
  44. # nightwatchjs: