Mercurial > hg > isophonics-drupal-site
annotate core/drupalci.yml @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | af1871eacc83 |
children |
rev | line source |
---|---|
Chris@17 | 1 # This is the DrupalCI testbot build file for Drupal core. |
Chris@17 | 2 # Learn to make one for your own drupal.org project: |
Chris@17 | 3 # https://www.drupal.org/drupalorg/docs/drupal-ci/customizing-drupalci-testing |
Chris@17 | 4 build: |
Chris@17 | 5 assessment: |
Chris@17 | 6 validate_codebase: |
Chris@17 | 7 phplint: |
Chris@17 | 8 csslint: |
Chris@17 | 9 halt-on-fail: false |
Chris@17 | 10 eslint: |
Chris@17 | 11 # A test must pass eslinting standards check in order to continue processing. |
Chris@17 | 12 halt-on-fail: false |
Chris@17 | 13 phpcs: |
Chris@17 | 14 # phpcs will use core's specified version of Coder. |
Chris@17 | 15 sniff-all-files: false |
Chris@17 | 16 halt-on-fail: false |
Chris@17 | 17 testing: |
Chris@17 | 18 # run_tests task is executed several times in order of performance speeds. |
Chris@17 | 19 # halt-on-fail can be set on the run_tests tasks in order to fail fast. |
Chris@17 | 20 # suppress-deprecations is false in order to be alerted to usages of |
Chris@17 | 21 # deprecated code. |
Chris@17 | 22 run_tests.phpunit: |
Chris@17 | 23 types: 'PHPUnit-Unit' |
Chris@17 | 24 testgroups: '--all' |
Chris@17 | 25 suppress-deprecations: false |
Chris@17 | 26 halt-on-fail: false |
Chris@17 | 27 run_tests.kernel: |
Chris@17 | 28 types: 'PHPUnit-Kernel' |
Chris@17 | 29 testgroups: '--all' |
Chris@17 | 30 suppress-deprecations: false |
Chris@17 | 31 halt-on-fail: false |
Chris@17 | 32 run_tests.simpletest: |
Chris@17 | 33 types: 'Simpletest' |
Chris@17 | 34 testgroups: '--all' |
Chris@17 | 35 suppress-deprecations: false |
Chris@17 | 36 halt-on-fail: false |
Chris@17 | 37 run_tests.functional: |
Chris@17 | 38 types: 'PHPUnit-Functional' |
Chris@17 | 39 testgroups: '--all' |
Chris@17 | 40 suppress-deprecations: false |
Chris@17 | 41 halt-on-fail: false |
Chris@17 | 42 run_tests.javascript: |
Chris@17 | 43 concurrency: 15 |
Chris@17 | 44 types: 'PHPUnit-FunctionalJavascript' |
Chris@17 | 45 testgroups: '--all' |
Chris@17 | 46 suppress-deprecations: false |
Chris@17 | 47 halt-on-fail: false |
Chris@17 | 48 # Run nightwatch testing. |
Chris@17 | 49 # @see https://www.drupal.org/project/drupal/issues/2869825 |
Chris@17 | 50 nightwatchjs: |