diff --git Gruntfile.js Gruntfile.js
index e3b06c5a60..c66407c49f 100644
|
|
module.exports = function(grunt) { |
742 | 742 | '!tests/qunit/editor/**' |
743 | 743 | ], |
744 | 744 | tasks: ['qunit'] |
| 745 | }, |
| 746 | phpunit: { |
| 747 | files: [ |
| 748 | SOURCE_DIR + 'wp-admin/includes/*.php' |
| 749 | ], |
| 750 | tasks: [ 'phpunit:default' ] |
745 | 751 | } |
746 | 752 | } |
747 | 753 | }); |
… |
… |
module.exports = function(grunt) { |
945 | 951 | grunt.registerMultiTask('phpunit', 'Runs PHPUnit tests, including the ajax, external-http, and multisite tests.', function() { |
946 | 952 | grunt.util.spawn({ |
947 | 953 | cmd: this.data.cmd, |
948 | | args: this.data.args, |
| 954 | args: this.data.args.concat( [ '--group', 'community-events' ] ), |
949 | 955 | opts: {stdio: 'inherit'} |
950 | 956 | }, this.async()); |
951 | 957 | }); |