annotate core/drupalci.yml @ 5:12f9dff5fda9 tip

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