You are here

drupalci.yml in Lingotek Translation 3.4.x

File

drupalci.yml
View source
  1. build:
  2. assessment:
  3. validate_codebase:
  4. phplint: { }
  5. csslint:
  6. halt-on-fail: false
  7. eslint:
  8. halt-on-fail: false
  9. phpcs:
  10. # phpcs will use core's specified version of Coder.
  11. sniff-all-files: false
  12. halt-on-fail: false
  13. phpstan:
  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 true in order to ignore alerts 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. run_tests.javascript:
  41. concurrency: 15
  42. types: 'PHPUnit-FunctionalJavascript'
  43. testgroups: '--all'
  44. suppress-deprecations: false
  45. halt-on-fail: false
  46. # Run nightwatch testing.
  47. # @see https://www.drupal.org/project/drupal/issues/2869825
  48. # nightwatchjs: