You are here

drupalci.yml in JSON:API 8.2

File

drupalci.yml
View source
  1. # This is the DrupalCI testbot build file for JSON API.
  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. # Re-run composer install to ensure the dependencies resolve for the
  9. # containerized PHP version.
  10. container_composer:
  11. options: ' install --prefer-dist --no-suggest --no-progress --no-interaction'
  12. halt-on-fail: true
  13. phpcs:
  14. # phpcs will use core's specified version of Coder.
  15. sniff-all-files: true
  16. halt-on-fail: true
  17. testing:
  18. # run_tests task is executed several times in order of performance speeds.
  19. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  20. # suppress-deprecations is false in order to be alerted to usages of
  21. # deprecated code.
  22. run_tests.phpunit:
  23. types: 'PHPUnit-Unit'
  24. testgroups: '--all'
  25. suppress-deprecations: false
  26. halt-on-fail: false
  27. run_tests.kernel:
  28. types: 'PHPUnit-Kernel'
  29. testgroups: '--all'
  30. suppress-deprecations: false
  31. halt-on-fail: false
  32. run_tests.functional:
  33. types: 'PHPUnit-Functional'
  34. testgroups: '--all'
  35. suppress-deprecations: false
  36. halt-on-fail: false