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


git-svn-id: https://develop.svn.wordpress.org/trunk@40527 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn 2017-04-22 20:24:11 +00:00
parent f017338460
commit 5d58054f35

View File

@ -426,23 +426,23 @@ module.exports = function(grunt) {
phpunit: { phpunit: {
'default': { 'default': {
cmd: 'phpunit', cmd: 'phpunit',
args: ['-c', 'phpunit.xml.dist'] args: ['--verbose', '-c', 'phpunit.xml.dist']
}, },
ajax: { ajax: {
cmd: 'phpunit', cmd: 'phpunit',
args: ['-c', 'phpunit.xml.dist', '--group', 'ajax'] args: ['--verbose', '-c', 'phpunit.xml.dist', '--group', 'ajax']
}, },
multisite: { multisite: {
cmd: 'phpunit', cmd: 'phpunit',
args: ['-c', 'tests/phpunit/multisite.xml'] args: ['--verbose', '-c', 'tests/phpunit/multisite.xml']
}, },
'external-http': { 'external-http': {
cmd: 'phpunit', cmd: 'phpunit',
args: ['-c', 'phpunit.xml.dist', '--group', 'external-http'] args: ['--verbose', '-c', 'phpunit.xml.dist', '--group', 'external-http']
}, },
'restapi-jsclient': { 'restapi-jsclient': {
cmd: 'phpunit', cmd: 'phpunit',
args: ['-c', 'phpunit.xml.dist', '--group', 'restapi-jsclient'] args: ['--verbose', '-c', 'phpunit.xml.dist', '--group', 'restapi-jsclient']
} }
}, },
uglify: { uglify: {