woocommerce/.travis.yml

33 lines
701 B
YAML
Raw Normal View History

2014-09-01 06:03:52 +00:00
language: php
sudo: false
# Test main supported versions of PHP and HHVM against latest WP. 5.2 is min supported version.
php:
- 5.2
- 5.3
- 5.6
2015-12-08 18:26:14 +00:00
- 7.0
2016-12-05 07:14:56 +00:00
- 7.1
2016-03-23 12:04:42 +00:00
- hhvm
env:
- WP_VERSION=latest WP_MULTISITE=0 PHP_LATEST_STABLE=7.1
# 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:
- php: 5.6
env: WP_VERSION=latest WP_MULTISITE=1 PHP_LATEST_STABLE="7.1"
2014-09-01 06:03:52 +00:00
before_script:
- bash tests/bin/install.sh woocommerce_test root '' localhost $WP_VERSION
- bash tests/bin/travis.sh before
2014-09-01 06:03:52 +00:00
2016-08-27 14:18:14 +00:00
script:
- bash tests/bin/phpunit.sh
- bash tests/bin/travis.sh during
after_script:
- bash tests/bin/travis.sh after