Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 27 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
language: php

addons:
apt:
packages:
- libxml2-utils
php:
- 5.3
- 5.4
- 5.5
- 5.6
- "7.0"
- "7.1"
Expand All @@ -13,6 +14,29 @@ env:
- DEPENDENCIES="high"
- DEPENDENCIES="low"

matrix:
fast_finish: true
include:
- php: 5.3
dist: precise
env: DEPENDENCIES="high"
- php: 5.3
dist: precise
env: DEPENDENCIES="low"
- php: 5.4
dist: trusty
env: DEPENDENCIES="high"
- php: 5.4
dist: trusty
env: DEPENDENCIES="low"
- php: 5.5
dist: trusty
env: DEPENDENCIES="high"
- php: 5.5
dist: trusty
env: DEPENDENCIES="low"

dist: xenial
sudo: false

before_install:
Expand Down
2 changes: 1 addition & 1 deletion tests/TextUI/failure-isolation.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require __DIR__ . '/../bootstrap.php';
PHPUnit_TextUI_Command::main();
?>
--EXPECTF--
QPHPUnit48 %s by Sebastian Bergmann and contributors. (modified by php5friends)
PHPUnit48 %s by Sebastian Bergmann and contributors. (modified by php5friends)

FFFFFFFFFFFFF

Expand Down
4 changes: 2 additions & 2 deletions tests/TextUI/log-junit.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Failed asserting that false is true.
</testcase>
<testcase name="testError" class="StatusTest" file="%s/StatusTest.php" line="%d" assertions="0" time="%s">
<error type="Exception">StatusTest::testError
Exception:
Exception:

%s/StatusTest.php:%d
</error>
Expand All @@ -42,7 +42,7 @@ Time: %s, Memory: %s
There was 1 error:

1) StatusTest::testError
Exception:
Exception:

%s/StatusTest.php:%d

Expand Down