From 38d5112c2524f25d4a3f0355efa61176b794cd5c Mon Sep 17 00:00:00 2001
From: Jeremy Felt <jeremyfelt@git.wordpress.org>
Date: Sun, 1 Oct 2017 22:15:16 +0000
Subject: [PATCH] Build/Test Tools: Add ms-files test group to sub-task list.

Previously, the `ms-files` test group would not run in any automatic configuration. This ensures it is always run as part of the test suite in Travis CI.

Props netweb.
Fixes #41698.


git-svn-id: https://develop.svn.wordpress.org/trunk@41659 602fd350-edb4-49c9-b593-d223f7449a82
---
 Gruntfile.js | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/Gruntfile.js b/Gruntfile.js
index 199f9faa2c..7cda785b56 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -464,6 +464,10 @@ module.exports = function(grunt) {
 				cmd: 'phpunit',
 				args: ['--verbose', '-c', 'tests/phpunit/multisite.xml']
 			},
+			'ms-files': {
+				cmd: 'phpunit',
+				args: ['--verbose', '-c', 'tests/phpunit/multisite.xml', '--group', 'ms-files']
+			},
 			'external-http': {
 				cmd: 'phpunit',
 				args: ['--verbose', '-c', 'phpunit.xml.dist', '--group', 'external-http']