mirror of
git://develop.git.wordpress.org/
synced 2025-01-17 04:48:25 +01:00
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:
parent
f017338460
commit
5d58054f35
10
Gruntfile.js
10
Gruntfile.js
@ -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: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user