Skip to content

Commit

Permalink
Added Travis CI tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
remcotolsma committed Feb 24, 2016
1 parent e500be4 commit 33f3515
Show file tree
Hide file tree
Showing 9 changed files with 836 additions and 154 deletions.
1 change: 1 addition & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ module.exports = function( grunt ) {
],
},
options: {
bin: 'vendor/bin/phpcs',
standard: 'phpcs.ruleset.xml',
showSniffCodes: true
}
Expand Down
6 changes: 6 additions & 0 deletions bin/install-wpcs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

# WordPress Coding Standards
if [[ -d vendor/wp-coding-standards/wpcs ]]; then
vendor/bin/phpcs --config-set installed_paths vendor/wp-coding-standards/wpcs
fi
6 changes: 6 additions & 0 deletions bin/travis-after_success
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

# Coveralls
if [[ '1' == $COVERAGE ]]; then
php vendor/bin/coveralls
fi
21 changes: 21 additions & 0 deletions bin/travis-before_script
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash

set -ev

phpenv local 5.6

composer self-update

if [[ '1' == $COVERAGE ]]; then
composer install
else
composer install --no-dev
fi

phpenv local --unset

phpenv rehash

wget https://raw.githubusercontent.com/wp-cli/sample-plugin/master/bin/install-wp-tests.sh

bash install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
15 changes: 15 additions & 0 deletions bin/travis-script
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

set -ev

# PHPUnit
phpunit

# Grunt
if [[ '1' == $GRUNT ]]; then
npm install -g grunt-cli

npm install --no-optional

grunt
fi
19 changes: 18 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,27 @@
},
"require": {
"php": ">=5.2.4",
"xrstf/composer-php52": "1.*",
"wp-pay/core": "^1.3.1",
"wp-pay-gateways/common": "dev-develop"
},
"require-dev": {
"satooshi/php-coveralls": "dev-master"
"phpmd/phpmd": "^2.2.3",
"satooshi/php-coveralls": "^0.7.1",
"squizlabs/php_codesniffer": "^2.2.0",
"wp-coding-standards/wpcs": "0.8.0",
"wp-cli/wp-cli": "^0.21.1"
},
"scripts": {
"post-install-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-update-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-autoload-dump": [
"xrstf\\Composer52\\Generator::onPostInstallCmd",
"bin/install-wpcs"
]
}
}
Loading

0 comments on commit 33f3515

Please sign in to comment.