move scripts
This commit is contained in:
parent
08250b9339
commit
7aa3a0fc9e
11
.travis.yml
11
.travis.yml
|
@ -24,6 +24,17 @@ matrix:
|
||||||
before_script:
|
before_script:
|
||||||
- bash tests/bin/install.sh woocommerce_test root '' localhost $WP_VERSION
|
- bash tests/bin/install.sh woocommerce_test root '' localhost $WP_VERSION
|
||||||
- bash tests/bin/travis.sh before
|
- bash tests/bin/travis.sh before
|
||||||
|
# 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.
|
||||||
|
# @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
|
||||||
|
|
||||||
script:
|
script:
|
||||||
# Search for PHP syntax errors.
|
# Search for PHP syntax errors.
|
||||||
|
|
|
@ -12,19 +12,6 @@ if [ $1 == 'before' ]; then
|
||||||
composer init --require=satooshi/php-coveralls:0.7.0 -n
|
composer init --require=satooshi/php-coveralls:0.7.0 -n
|
||||||
composer install --no-interaction
|
composer install --no-interaction
|
||||||
|
|
||||||
# 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.
|
|
||||||
# @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
|
|
||||||
|
|
||||||
|
|
||||||
elif [ $1 == 'after' ]; then
|
elif [ $1 == 'after' ]; then
|
||||||
|
|
||||||
# no Xdebug and therefore no coverage in PHP 5.2
|
# no Xdebug and therefore no coverage in PHP 5.2
|
||||||
|
|
Loading…
Reference in New Issue