woocommerce/.travis.yml

22 lines
643 B
YAML

language: php
dist: trusty
sudo: required
matrix:
include:
- name: "PHP 7.2 unit tests, PHP Coding standards check"
php: 7.2
env: WP_VERSION=latest WP_MULTISITE=0 WP_CORE_DIR=/tmp/wordpress RUN_PHPCS=1
- name: "PHP 7.1 unit tests"
php: 7.1
env: WP_VERSION=latest WP_MULTISITE=0 WP_CORE_DIR=/tmp/wordpress
before_script:
- phpenv config-rm xdebug.ini
- export PATH="$WP_CORE_DIR/wp-content/plugins/woocommerce-rest-api/vendor/bin:$PATH"
- bash unit-tests/bin/install.sh woocommerce_test root '' localhost $WP_VERSION
script:
- composer install
- bash unit-tests/bin/phpunit.sh
- bash unit-tests/bin/phpcs.sh