drupalci.yml in Commerce sermepa 8.2
File
drupalci.yml
View source
- # https://www.drupal.org/drupalorg/docs/drupal-ci/customizing-drupalci-testing
- build:
- assessment:
- validate_codebase:
- phplint:
- csslint:
- halt-on-fail: false
- eslint:
- # A test must pass eslinting standards check in order to continue processing.
- halt-on-fail: false
- phpcs:
- # phpcs will use core's specified version of Coder.
- sniff-all-files: false
- halt-on-fail: false
- phpstan:
- halt-on-fail: false
- testing:
- run_tests.standard:
- types: 'PHPUnit-Unit,PHPUnit-Kernel,PHPUnit-Functional'
- testgroups: '--all'
- suppress-deprecations: false
- halt-on-fail: false
- run_tests.build:
- # Limit concurrency due to disk space concerns.
- concurrency: 15
- types: 'PHPUnit-Build'
- testgroups: '--all'
- suppress-deprecations: false
- halt-on-fail: false
- run_tests.javascript:
- concurrency: 15
- types: 'PHPUnit-FunctionalJavascript'
- testgroups: '--all'
- suppress-deprecations: false
- halt-on-fail: false