You are here

drupalci.yml in Commerce sermepa 8.2

File

drupalci.yml
View source
  1. # https://www.drupal.org/drupalorg/docs/drupal-ci/customizing-drupalci-testing
  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: false
  11. phpcs:
  12. # phpcs will use core's specified version of Coder.
  13. sniff-all-files: false
  14. halt-on-fail: false
  15. phpstan:
  16. halt-on-fail: false
  17. testing:
  18. run_tests.standard:
  19. types: 'PHPUnit-Unit,PHPUnit-Kernel,PHPUnit-Functional'
  20. testgroups: '--all'
  21. suppress-deprecations: false
  22. halt-on-fail: false
  23. run_tests.build:
  24. # Limit concurrency due to disk space concerns.
  25. concurrency: 15
  26. types: 'PHPUnit-Build'
  27. testgroups: '--all'
  28. suppress-deprecations: false
  29. halt-on-fail: false
  30. run_tests.javascript:
  31. concurrency: 15
  32. types: 'PHPUnit-FunctionalJavascript'
  33. testgroups: '--all'
  34. suppress-deprecations: false
  35. halt-on-fail: false