Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #4166: Change from validate:all to just validate. #4167

Merged
merged 2 commits into from
Jun 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/developer/project-tasks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ following command:

.. code-block:: bash

blt validate:all
blt validate


.. _building-front-end-assets:
Expand Down
2 changes: 1 addition & 1 deletion scripts/pipelines/validate
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ set -ev

export PATH=${COMPOSER_BIN}:${PATH}

blt validate:all --define drush.alias='${drush.aliases.ci}' --ansi --verbose
blt validate --define drush.alias='${drush.aliases.ci}' --ansi --verbose

set +v
2 changes: 1 addition & 1 deletion scripts/travis/run_tests
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

set -v

blt validate:all --no-interaction || { set +v && return 1; }
blt validate --no-interaction || { set +v && return 1; }
travis_wait blt setup --define drush.alias='${drush.aliases.ci}' --no-interaction --verbose || { set +v && return 1; }
blt tests:all --define drush.alias='${drush.aliases.ci}' --define tests.run-server=true --no-interaction --verbose || { set +v && return 1; }

Expand Down
2 changes: 1 addition & 1 deletion src/Robo/Commands/Validate/ValidateAllCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Acquia\Blt\Robo\BltTasks;

/**
* Defines commands in the "validate:all*" namespace.
* Defines commands in the "validate*" namespace.
*/
class ValidateAllCommand extends BltTasks {

Expand Down