Changeset 5672
- Timestamp:
- 04/07/2015 11:51:05 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r5649 r5672 240 240 args: [ '-c', 'phpunit.xml.dist' ] 241 241 }, 242 buddypress: { 243 cmd: 'phpunit', 244 args: [ '-c', 'tests/phpunit/buddypress.xml' ] 245 }, 242 246 multisite: { 243 247 cmd: 'phpunit', … … 335 339 336 340 // PHPUnit test task. 337 grunt.registerMultiTask( 'phpunit', 'Runs PHPUnit tests, including the ajaxand multisite tests.', function() {341 grunt.registerMultiTask( 'phpunit', 'Runs PHPUnit tests, including the BuddyPress and multisite tests.', function() { 338 342 grunt.util.spawn( { 339 343 cmd: this.data.cmd, -
trunk/phpunit.xml.dist
r5610 r5672 8 8 > 9 9 <testsuites> 10 <testsuite> 11 <directory suffix=".php">tests/phpunit/testcases/</directory> 12 </testsuite> 13 </testsuites> 10 <testsuite> 11 <directory suffix=".php">tests/phpunit/testcases/</directory> 12 </testsuite> 13 </testsuites> 14 <groups> 15 <exclude> 16 <group>buddypress</group> 17 </exclude> 18 </groups> 14 19 </phpunit> -
trunk/tests/phpunit/multisite.xml
r5287 r5672 15 15 </testsuite> 16 16 </testsuites> 17 <groups> 18 <exclude> 19 <group>buddypress</group> 20 </exclude> 21 </groups> 17 22 </phpunit>
Note: See TracChangeset
for help on using the changeset viewer.