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