You are here

drupalci.yml in Commerce Migrate 3.1.x

Same filename and directory in other branches
  1. 8.2 drupalci.yml
  2. 3.0.x drupalci.yml

File

drupalci.yml
View source
  1. # This is the DrupalCI testbot build file for Drupal core.
  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. csslint:
  9. halt-on-fail: false
  10. eslint:
  11. # A test must pass eslinting standards check in order to continue processing.
  12. halt-on-fail: false
  13. phpcs:
  14. # phpcs will use core's specified version of Coder.
  15. sniff-all-files: false
  16. halt-on-fail: false
  17. testing:
  18. container_command:
  19. commands: "cd ${SOURCE_DIR} && cd modules/contrib/commerce && sudo -u www-data curl https://www.drupal.org/files/issues/2020-07-07/3137651-8.patch | patch -p1"
  20. # run_tests task is executed several times in order of performance speeds.
  21. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  22. # suppress-deprecations is false in order to be alerted to usages of
  23. # deprecated code.
  24. run_tests.phpunit:
  25. types: 'PHPUnit-Unit'
  26. testgroups: '--all'
  27. suppress-deprecations: true
  28. halt-on-fail: false
  29. run_tests.kernel:
  30. types: 'PHPUnit-Kernel'
  31. testgroups: '--all'
  32. suppress-deprecations: true
  33. halt-on-fail: false
  34. run_tests.simpletest:
  35. types: 'Simpletest'
  36. testgroups: '--all'
  37. suppress-deprecations: true
  38. halt-on-fail: false
  39. run_tests.build:
  40. # Limit concurrency due to disk space concerns.
  41. concurrency: 15
  42. types: 'PHPUnit-Build'
  43. testgroups: '--all'
  44. suppress-deprecations: true
  45. halt-on-fail: false
  46. run_tests.functional:
  47. types: 'PHPUnit-Functional'
  48. testgroups: '--all'
  49. suppress-deprecations: true
  50. halt-on-fail: false