Skip to content
Snippets Groups Projects

Issue #3304569: Validate package names are in the correct format in Installer

Open Issue #3304569: Validate package names are in the correct format in Installer
1 file
+ 1
22
Compare changes
  • Side-by-side
  • Inline
+ 1
22
@@ -72,29 +72,8 @@ build:
# halt-on-fail can be set on the run_tests tasks in order to fail fast.
# suppress-deprecations is false in order to be alerted to usages of
# deprecated code.
run_tests.phpunit:
types: 'PHPUnit-Unit'
testgroups: '--all'
suppress-deprecations: false
halt-on-fail: false
run_tests.kernel:
types: 'PHPUnit-Kernel'
testgroups: '--all'
suppress-deprecations: false
halt-on-fail: false
run_tests.functional:
types: 'PHPUnit-Functional'
testgroups: '--all'
suppress-deprecations: false
halt-on-fail: false
# Functional JavaScript tests require a concurrency of 1 because there is
# only one instance of PhantomJS on the testbot machine.
run_tests.javascript:
concurrency: 1
types: 'PHPUnit-FunctionalJavascript'
testgroups: '--all'
testgroups: '--class "Drupal\Tests\project_browser\Kernel\InstallerTest"'
    • This allows Drupalci to only test this 1 class. While not as fast as testing locally it will make drupalci faster so that you can work on test and push up changes and not have to wait for all the tests to pass.

Please register or sign in to reply
suppress-deprecations: false
halt-on-fail: false
# Run nightwatch testing.
# @see https://www.drupal.org/project/drupal/issues/2869825
nightwatchjs: {}
Loading