Changeset 6217
- Timestamp:
- 01/12/2017 07:04:27 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
.travis.yml (modified) (1 diff)
-
Gruntfile.js (modified) (2 diffs)
-
tests/phpunit/buddypress.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/.travis.yml
r6203 r6217 90 90 script: 91 91 - grunt travis 92 - if [ "$TRAVIS_PHP_VERSION" != "5.2" ]; then grunt test:buddypress; fi 92 93 93 94 notifications: -
trunk/Gruntfile.js
r6100 r6217 409 409 410 410 // PHPUnit test task. 411 grunt.registerTask( 'test', 'Run all PHPUnit test tasks.', [ 'phpunit' ] ); 411 grunt.registerTask( 'test:buddypress', 'Run the BuddyPress PHPUnit test tasks.', [ 'phpunit:buddypress' ] ); 412 grunt.registerTask( 'test:wordpress', 'Run the single and multisite WordPress PHPUnit test tasks.', [ 'phpunit:default', 'phpunit:multisite' ] ); 413 414 415 412 416 413 417 // JavaScript test task. … … 415 419 416 420 // Travis CI Task 417 grunt.registerTask( 'travis', [ 'jsvalidate:src', 'jshint', 'checktextdomain', 'test ' ] );421 grunt.registerTask( 'travis', [ 'jsvalidate:src', 'jshint', 'checktextdomain', 'test:wordpress' ] ); 418 422 419 423 // Patch task. -
trunk/tests/phpunit/buddypress.xml
r6204 r6217 12 12 <testsuites> 13 13 <testsuite> 14 <directory suffix=".php" phpVersion="5.3.0" phpVersionOperator=">=">./testcases/</directory>14 <directory suffix=".php">./testcases/</directory> 15 15 </testsuite> 16 16 </testsuites>
Note: See TracChangeset
for help on using the changeset viewer.