You are here

drupalci.yml in CAS 2.x

File

drupalci.yml
View source
  1. build:
  2. assessment:
  3. validate_codebase:
  4. # Remove patching as soon as #3192093 is committed.
  5. # See https://www.drupal.org/project/coder/issues/3192093
  6. container_command:
  7. commands: "cd ${SOURCE_DIR}/vendor/drupal/coder && sudo -u www-data curl https://patch-diff.githubusercontent.com/raw/pfrenssen/coder/pull/135.diff | sudo -u www-data patch -p1"
  8. phplint:
  9. halt-on-fail: true
  10. phpcs:
  11. sniff-all-files: false
  12. halt-on-fail: true
  13. testing:
  14. run_tests.phpunit:
  15. types: 'PHPUnit-Unit'
  16. testgroups: '--all'
  17. suppress-deprecations: true
  18. halt-on-fail: false
  19. run_tests.kernel:
  20. types: 'PHPUnit-Kernel'
  21. testgroups: '--all'
  22. suppress-deprecations: true
  23. halt-on-fail: false
  24. run_tests.functional:
  25. types: 'PHPUnit-Functional'
  26. testgroups: '--all'
  27. suppress-deprecations: true
  28. halt-on-fail: false