forked from rickard2/utcw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
35 lines (29 loc) · 946 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Main Travis CI configuration file for wordpress-plugin tests
# https://github.com/benbalter/wordpress-plugin-tests
# Tell Travis CI we're using PHP
language: php
# Versions of PHP to test against
php:
- 5.3
- 5.4
# Specify versions of WordPress to test against
# WP_VERSION = WordPress version number (use "master" for SVN trunk)
# WP_MULTISITE = whether to test multisite (use either "0" or "1")
env:
- WP_VERSION=master WP_MULTISITE=0
- WP_VERSION=3.5 WP_MULTISITE=0
- WP_VERSION=3.4.2 WP_MULTISITE=0
- WP_VERSION=3.3.3 WP_MULTISITE=0
- WP_VERSION=master WP_MULTISITE=1
- WP_VERSION=3.5 WP_MULTISITE=1
- WP_VERSION=3.4.2 WP_MULTISITE=1
- WP_VERSION=3.3.3 WP_MULTISITE=1
# Setup test environment
before_script:
- source test/setup.sh
script: phpunit -c test
# wordpress-plugin-tests specific config
# Tells Travis CI not to run unit tests against the setup branch
branches:
except:
- setup