diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-31 10:29:30 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-31 10:29:30 +0100 |
commit | 71691fe44a7b2a80f3b9d96d54720cce7994ad08 (patch) | |
tree | 6089b5574ef56991d36701c84754f420cc3bd64f /.travis.yml | |
parent | fdcbdda1ade822e038727ff1b653b9702ba75d6a (diff) | |
parent | aa6e27cf4fbbb4713b1cdc933c4719ae9da78c71 (diff) | |
download | wallabag-71691fe44a7b2a80f3b9d96d54720cce7994ad08.tar.gz wallabag-71691fe44a7b2a80f3b9d96d54720cce7994ad08.tar.zst wallabag-71691fe44a7b2a80f3b9d96d54720cce7994ad08.zip |
Merge pull request #1035 from j0k3r/refactor
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 | ||