forked from picandocodigo/List-Category-Posts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (34 loc) · 1005 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
36
37
38
39
40
41
# 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.2
- 5.3
- 5.4
- 5.5
# - 6.0
# 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=master WP_MULTISITE=1
- WP_VERSION=3.7.1 WP_MULTISITE=0
- WP_VERSION=3.7.1 WP_MULTISITE=1
# Grab the setup script and execute
before_script:
- wget https://raw.github.com/wp-repository/wp-repository.codex/phpunit-generic/setup.sh
- source setup.sh
script: phpunit
# Tells Travis CI to run unit tests against certain branches
branches:
except:
- assets
- upstream
# Reduce mail notifications by Travis CI to a minimum
notifications:
email:
on_success: change
on_failure: always