2014-09-01 06:03:52 +00:00
|
|
|
language: php
|
|
|
|
|
2015-02-03 16:43:01 +00:00
|
|
|
sudo: false
|
|
|
|
|
2016-03-23 15:37:13 +00:00
|
|
|
# Test main supported versions of PHP and HHVM against latest WP. 5.2 is min supported version.
|
2015-02-03 16:43:01 +00:00
|
|
|
php:
|
2016-03-23 10:16:24 +00:00
|
|
|
- 5.2
|
2015-02-03 16:43:01 +00:00
|
|
|
- 5.3
|
|
|
|
- 5.4
|
|
|
|
- 5.5
|
|
|
|
- 5.6
|
2015-12-08 18:26:14 +00:00
|
|
|
- 7.0
|
2016-03-23 12:04:42 +00:00
|
|
|
- hhvm
|
2015-02-03 16:43:01 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
- WP_VERSION=latest WP_MULTISITE=0
|
|
|
|
|
2016-03-23 15:37:13 +00:00
|
|
|
# Additonal tests against stable PHP (min recommended version is 5.6) and past supported versions of WP.
|
2014-09-01 06:03:52 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
2016-03-23 10:16:24 +00:00
|
|
|
- php: 5.6
|
2015-02-03 16:43:01 +00:00
|
|
|
env: WP_VERSION=latest WP_MULTISITE=1
|
2014-09-01 06:03:52 +00:00
|
|
|
|
|
|
|
before_script:
|
2014-09-22 19:15:16 +00:00
|
|
|
- bash tests/bin/install.sh woocommerce_test root '' localhost $WP_VERSION
|
|
|
|
- bash tests/bin/travis.sh before
|
2016-08-27 16:53:46 +00:00
|
|
|
# Install CodeSniffer for WordPress Coding Standards checks.
|
|
|
|
- git clone -b master --depth 1 https://github.com/squizlabs/PHP_CodeSniffer.git /tmp/phpcs
|
|
|
|
# Install WordPress Coding Standards.
|
|
|
|
- git clone -b master --depth 1 https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git /tmp/sniffs
|
|
|
|
# Install PHP Compatibility sniffs.
|
|
|
|
- git clone -b master --depth 1 https://github.com/wimg/PHPCompatibility.git /tmp/sniffs/PHPCompatibility
|
|
|
|
# Set install path for PHPCS sniffs.
|
2016-08-27 16:52:45 +00:00
|
|
|
# @link https://github.com/squizlabs/PHP_CodeSniffer/blob/4237c2fc98cc838730b76ee9cee316f99286a2a7/CodeSniffer.php#L1941
|
|
|
|
- /tmp/phpcs/scripts/phpcs --config-set installed_paths /tmp/sniffs
|
|
|
|
# After CodeSniffer install you should refresh your path.
|
|
|
|
- phpenv rehash
|
2014-09-01 06:03:52 +00:00
|
|
|
|
2016-08-27 14:18:14 +00:00
|
|
|
script:
|
|
|
|
# Search for PHP syntax errors.
|
2016-08-27 14:35:11 +00:00
|
|
|
- find . \( -name '*.php' -not -path "./vendor/*" \) -exec php -lf {} \;
|
2016-08-27 14:18:14 +00:00
|
|
|
# Run PHPUnit tests.
|
|
|
|
- phpunit -c phpunit.xml.dist
|
|
|
|
# WordPress Coding Standards.
|
|
|
|
# @link https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards
|
|
|
|
# @link http://pear.php.net/package/PHP_CodeSniffer/
|
|
|
|
# -p flag: Show progress of the run.
|
|
|
|
# -s flag: Show sniff codes in all reports.
|
|
|
|
# -v flag: Print verbose output.
|
|
|
|
# -n flag: Do not print warnings. (shortcut for --warning-severity=0)
|
|
|
|
# --standard: Use WordPress as the standard.
|
|
|
|
# --extensions: Only sniff PHP files.
|
2016-09-07 21:33:34 +00:00
|
|
|
- /tmp/phpcs/scripts/phpcs -p -s -n ./*.php --standard=./phpcs.ruleset.xml --extensions=php
|
|
|
|
- /tmp/phpcs/scripts/phpcs -p -s -n ./**/*.php --standard=./phpcs.ruleset.xml --extensions=php --ignore=./vendor/*.php
|
|
|
|
- /tmp/phpcs/scripts/phpcs -p -s -n ./**/**/*.php --standard=./phpcs.ruleset.xml --extensions=php --ignore=./vendor/**/*.php
|
|
|
|
- /tmp/phpcs/scripts/phpcs -p -s -n ./**/**/**/*.php --standard=./phpcs.ruleset.xml --extensions=php --ignore=./vendor/**/**/*.php
|
2014-09-07 18:53:33 +00:00
|
|
|
|
|
|
|
after_script:
|
2014-09-22 19:15:16 +00:00
|
|
|
- bash tests/bin/travis.sh after
|