-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
37 lines (31 loc) · 1.05 KB
/
.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
36
37
# 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.4.1 WP_MULTISITE=0
- WP_VERSION=3.3.2 WP_MULTISITE=0
- WP_VERSION=3.2.1 WP_MULTISITE=0
- WP_VERSION=4.9.2 WP_MULTISITE=0
- WP_VERSION=master WP_MULTISITE=1
- WP_VERSION=3.4.1 WP_MULTISITE=1
- WP_VERSION=3.3.2 WP_MULTISITE=1
- WP_VERSION=3.2.1 WP_MULTISITE=1
# Grab the setup script and execute
before_script:
- wget https://raw.github.com/benbalter/wordpress-plugin-tests/setup/setup.sh
- source setup.sh
script: phpunit
# wordpress-plugin-tests specific config
# Tells Travis CI not to run unit tests against the setup branch
branches:
except:
- setup