Skip to content
Snippets Groups Projects

Fix tests

Merged Erick Hitter requested to merge fix/5.3-test into master
1 file
+ 28
10
Compare changes
  • Side-by-side
  • Inline
+ 28
10
@@ -2,6 +2,7 @@ variables:
@@ -2,6 +2,7 @@ variables:
# Configure mysql service (https://hub.docker.com/_/mysql/)
# Configure mysql service (https://hub.docker.com/_/mysql/)
MYSQL_DATABASE: wordpress_tests
MYSQL_DATABASE: wordpress_tests
MYSQL_ROOT_PASSWORD: mysql
MYSQL_ROOT_PASSWORD: mysql
 
WP_VERSION: latest
cache:
cache:
paths:
paths:
@@ -10,7 +11,7 @@ cache:
@@ -10,7 +11,7 @@ cache:
before_script:
before_script:
# Set up WordPress tests
# Set up WordPress tests
- bash bin/install-wp-tests.sh $MYSQL_DATABASE root $MYSQL_ROOT_PASSWORD mysql latest true
- bash bin/install-wp-tests.sh $MYSQL_DATABASE root $MYSQL_ROOT_PASSWORD mysql $WP_VERSION true
# PHPUnit
# PHPUnit
- |
- |
@@ -20,51 +21,68 @@ before_script:
@@ -20,51 +21,68 @@ before_script:
composer global require "phpunit/phpunit=4.8.*"
composer global require "phpunit/phpunit=4.8.*"
fi
fi
# Install PHPCS and WPCS
- composer global require automattic/vipwpcs
- phpcs --config-set installed_paths $HOME/.composer/vendor/wp-coding-standards/wpcs,$HOME/.composer/vendor/automattic/vipwpcs
PHPunit:PHP5.3:MySQL:
PHPunit:PHP5.3:MySQL:
 
stage: test
 
variables:
 
WP_VERSION: '5.1'
image: containers.ethitter.com:443/docker/images/php:5.3
image: containers.ethitter.com:443/docker/images/php:5.3
services:
services:
- mysql:5.6
- mysql:5.6
script:
script:
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- phpcs -n
- phpunit
- phpunit
PHPunit:PHP5.6:MySQL:
PHPunit:PHP5.6:MySQL:
 
stage: test
image: containers.ethitter.com:443/docker/images/php:5.6
image: containers.ethitter.com:443/docker/images/php:5.6
services:
services:
- mysql:5.6
- mysql:5.6
script:
script:
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- phpcs -n
- phpunit
- phpunit
PHPunit:PHP7.0:MySQL:
PHPunit:PHP7.0:MySQL:
 
stage: test
image: containers.ethitter.com:443/docker/images/php:7.0
image: containers.ethitter.com:443/docker/images/php:7.0
services:
services:
- mysql:5.6
- mysql:5.6
script:
script:
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- phpcs -n
- phpunit
- phpunit
PHPunit:PHP7.1:MySQL:
PHPunit:PHP7.1:MySQL:
 
stage: test
image: containers.ethitter.com:443/docker/images/php:7.1
image: containers.ethitter.com:443/docker/images/php:7.1
services:
services:
- mysql:5.6
- mysql:5.6
script:
script:
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- phpcs -n
- phpunit
- phpunit
PHPunit:PHP7.2:MySQL:
PHPunit:PHP7.2:MySQL:
 
stage: test
image: containers.ethitter.com:443/docker/images/php:7.2
image: containers.ethitter.com:443/docker/images/php:7.2
services:
services:
- mysql:5.6
- mysql:5.6
script:
script:
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
- phpcs -n
- phpunit
- phpunit
 
 
PHPunit:PHP7.3:MySQL:
 
stage: test
 
image: containers.ethitter.com:443/docker/images/php:7.3
 
services:
 
- mysql:5.6
 
script:
 
- find . -type "f" -iname "*.php" | xargs -L "1" php -l
 
- phpunit
 
 
PHPCS:
 
stage: test
 
image: containers.ethitter.com:443/docker/images/php:7.3
 
before_script:
 
- composer global require automattic/vipwpcs
 
- composer global require phpcompatibility/phpcompatibility-wp
 
- phpcs --config-set installed_paths $HOME/.composer/vendor/wp-coding-standards/wpcs,$HOME/.composer/vendor/automattic/vipwpcs,$HOME/.composer/vendor/phpcompatibility/php-compatibility,$HOME/.composer/vendor/phpcompatibility/phpcompatibility-paragonie,$HOME/.composer/vendor/phpcompatibility/phpcompatibility-wp
 
script:
 
- phpcs -n
Loading