You are here

drupalci.yml in Simple Responsive Table 8

File

drupalci.yml
View source
  1. # This file customizes the steps that DrupalCI will use when testing ths project.
  2. #
  3. # Learn to make one for your own drupal.org project:
  4. # https://www.drupal.org/drupalorg/docs/drupal-ci/customizing-drupalci-testing
  5. build:
  6. assessment:
  7. validate_codebase:
  8. phplint:
  9. container_composer:
  10. phpcs:
  11. # phpcs will use core's specified version of Coder.
  12. sniff-all-files: true
  13. halt-on-fail: false
  14. testing:
  15. # run_tests task is executed several times in order of performance speeds.
  16. # halt-on-fail can be set on the run_tests tasks in order to fail fast.
  17. # suppress-deprecations is false in order to be alerted to usages of
  18. # deprecated code.
  19. run_tests.standard:
  20. types: 'Simpletest,PHPUnit-Unit,PHPUnit-Kernel,PHPUnit-Functional'
  21. testgroups: '--all'
  22. suppress-deprecations: false
  23. # run_tests.js:
  24. # types: 'PHPUnit-FunctionalJavascript'
  25. # testgroups: '--all'
  26. # suppress-deprecations: false
  27. # nightwatchjs: { }