From 5d58054f3514b3215165d4a3b21620db51b0052e Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Sat, 22 Apr 2017 20:24:11 +0000 Subject: [PATCH] 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 --- Gruntfile.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 80e2968bf5..14e558f2d1 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -426,23 +426,23 @@ module.exports = function(grunt) { phpunit: { 'default': { cmd: 'phpunit', - args: ['-c', 'phpunit.xml.dist'] + args: ['--verbose', '-c', 'phpunit.xml.dist'] }, ajax: { cmd: 'phpunit', - args: ['-c', 'phpunit.xml.dist', '--group', 'ajax'] + args: ['--verbose', '-c', 'phpunit.xml.dist', '--group', 'ajax'] }, multisite: { cmd: 'phpunit', - args: ['-c', 'tests/phpunit/multisite.xml'] + args: ['--verbose', '-c', 'tests/phpunit/multisite.xml'] }, 'external-http': { cmd: 'phpunit', - args: ['-c', 'phpunit.xml.dist', '--group', 'external-http'] + args: ['--verbose', '-c', 'phpunit.xml.dist', '--group', 'external-http'] }, 'restapi-jsclient': { cmd: 'phpunit', - args: ['-c', 'phpunit.xml.dist', '--group', 'restapi-jsclient'] + args: ['--verbose', '-c', 'phpunit.xml.dist', '--group', 'restapi-jsclient'] } }, uglify: {