You are here

drupalci.yml in Entity Share 8.3

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

File

drupalci.yml
View source
  1. # This is the DrupalCI testbot build file for Entity Share.
  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. halt-on-fail: false
  9. csslint:
  10. halt-on-fail: false
  11. eslint:
  12. halt-on-fail: false
  13. phpcs:
  14. # phpcs will use core's specified version of Coder.
  15. sniff-all-files: true
  16. halt-on-fail: false
  17. phpstan:
  18. halt-on-fail: false
  19. testing:
  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.kernel:
  25. types: 'PHPUnit-Kernel'
  26. testgroups: '--all'
  27. suppress-deprecations: true
  28. halt-on-fail: false
  29. run_tests.functional:
  30. types: 'PHPUnit-Functional'
  31. testgroups: '--all'
  32. suppress-deprecations: true
  33. halt-on-fail: false