Chris@4: # This is the DrupalCI testbot build file for Drupal core. Chris@4: # Learn to make one for your own drupal.org project: Chris@4: # https://www.drupal.org/drupalorg/docs/drupal-ci/customizing-drupalci-testing Chris@4: build: Chris@4: assessment: Chris@4: validate_codebase: Chris@4: phplint: Chris@4: csslint: Chris@4: halt-on-fail: false Chris@4: eslint: Chris@4: # A test must pass eslinting standards check in order to continue processing. Chris@4: halt-on-fail: false Chris@4: phpcs: Chris@4: # phpcs will use core's specified version of Coder. Chris@4: sniff-all-files: false Chris@4: halt-on-fail: false Chris@4: testing: Chris@4: # run_tests task is executed several times in order of performance speeds. Chris@4: # halt-on-fail can be set on the run_tests tasks in order to fail fast. Chris@4: # suppress-deprecations is false in order to be alerted to usages of Chris@4: # deprecated code. Chris@4: run_tests.phpunit: Chris@4: types: 'PHPUnit-Unit' Chris@4: testgroups: '--all' Chris@4: suppress-deprecations: false Chris@4: halt-on-fail: false Chris@4: run_tests.kernel: Chris@4: types: 'PHPUnit-Kernel' Chris@4: testgroups: '--all' Chris@4: suppress-deprecations: false Chris@4: halt-on-fail: false Chris@4: run_tests.simpletest: Chris@4: types: 'Simpletest' Chris@4: testgroups: '--all' Chris@4: suppress-deprecations: false Chris@4: halt-on-fail: false Chris@4: run_tests.functional: Chris@4: types: 'PHPUnit-Functional' Chris@4: testgroups: '--all' Chris@4: suppress-deprecations: false Chris@4: halt-on-fail: false Chris@4: run_tests.javascript: Chris@4: concurrency: 15 Chris@4: types: 'PHPUnit-FunctionalJavascript' Chris@4: testgroups: '--all' Chris@4: suppress-deprecations: false Chris@4: halt-on-fail: false Chris@4: # Run nightwatch testing. Chris@4: # @see https://www.drupal.org/project/drupal/issues/2869825 Chris@4: nightwatchjs: