diff options
author | Jeremy <jeremy.benoist@gmail.com> | 2015-01-31 09:15:51 +0100 |
---|---|---|
committer | Jeremy <jeremy.benoist@gmail.com> | 2015-01-31 09:35:50 +0100 |
commit | aa6e27cf4fbbb4713b1cdc933c4719ae9da78c71 (patch) | |
tree | 6089b5574ef56991d36701c84754f420cc3bd64f /.travis.yml | |
parent | 4ffc77d9f574fd91e9ac811754c2aa42a06e582f (diff) | |
download | wallabag-aa6e27cf4fbbb4713b1cdc933c4719ae9da78c71.tar.gz wallabag-aa6e27cf4fbbb4713b1cdc933c4719ae9da78c71.tar.zst wallabag-aa6e27cf4fbbb4713b1cdc933c4719ae9da78c71.zip |
Tests are working again
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 2971c5b9..1d90a748 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -1,6 +1,18 @@ | |||
1 | language: php | 1 | language: php |
2 | |||
2 | php: | 3 | php: |
4 | - 5.4 | ||
3 | - 5.5 | 5 | - 5.5 |
6 | - 5.6 | ||
7 | |||
4 | branches: | 8 | branches: |
5 | only: | 9 | only: |
6 | - refactor \ No newline at end of file | 10 | - refactor |
11 | |||
12 | before_script: | ||
13 | - composer self-update | ||
14 | - echo 'date.timezone = "Europe/Paris"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini | ||
15 | |||
16 | script: | ||
17 | - ant -f app/build.xml prepare | ||
18 | - phpunit -c app --coverage-text | ||