Make WordPress Core

Changeset 40527


Ignore:
Timestamp:
04/22/2017 08:24:11 PM (8 years ago)
Author:
johnbillion
Message:

Build/Test Tools: Enable verbose mode in PHPUnit so we can see which tests are being skipped, and now that the number of skipped tests has been lowered.

See #40533, #40531

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Gruntfile.js

    r40061 r40527  
    427427            'default': {
    428428                cmd: 'phpunit',
    429                 args: ['-c', 'phpunit.xml.dist']
     429                args: ['--verbose', '-c', 'phpunit.xml.dist']
    430430            },
    431431            ajax: {
    432432                cmd: 'phpunit',
    433                 args: ['-c', 'phpunit.xml.dist', '--group', 'ajax']
     433                args: ['--verbose', '-c', 'phpunit.xml.dist', '--group', 'ajax']
    434434            },
    435435            multisite: {
    436436                cmd: 'phpunit',
    437                 args: ['-c', 'tests/phpunit/multisite.xml']
     437                args: ['--verbose', '-c', 'tests/phpunit/multisite.xml']
    438438            },
    439439            'external-http': {
    440440                cmd: 'phpunit',
    441                 args: ['-c', 'phpunit.xml.dist', '--group', 'external-http']
     441                args: ['--verbose', '-c', 'phpunit.xml.dist', '--group', 'external-http']
    442442            },
    443443            'restapi-jsclient': {
    444444                cmd: 'phpunit',
    445                 args: ['-c', 'phpunit.xml.dist', '--group', 'restapi-jsclient']
     445                args: ['--verbose', '-c', 'phpunit.xml.dist', '--group', 'restapi-jsclient']
    446446            }
    447447        },
Note: See TracChangeset for help on using the changeset viewer.