Skip to content

Commit 4eaf459

Browse files
committed
Simplify test matrix and clean up test suite
1 parent 45bf730 commit 4eaf459

File tree

2 files changed

+13
-25
lines changed

2 files changed

+13
-25
lines changed

.travis.yml

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
language: php
22

3-
php:
4-
- 5.4
5-
- 5.5
6-
- 5.6
7-
- 7.0
8-
- 7.1
9-
- 7.2
10-
- 7.3
11-
- 7.4
12-
- nightly # ignore errors, see below
13-
- hhvm # ignore errors, see below
14-
153
# lock distro so new future defaults will not break the build
164
dist: trusty
175

18-
matrix:
6+
jobs:
7+
include:
8+
- php: 5.4
9+
- php: 5.5
10+
- php: 5.6
11+
- php: 7.0
12+
- php: 7.1
13+
- php: 7.2
14+
- php: 7.3
15+
- php: 7.4
16+
- php: hhvm-3.18
1917
allow_failures:
20-
- php: hhvm
21-
- php: nightly
18+
- php: hhvm-3.18
2219

2320
install:
2421
- composer install

phpunit.xml.dist

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3-
<phpunit backupGlobals="false"
4-
backupStaticAttributes="false"
5-
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
processIsolation="false"
10-
stopOnFailure="false"
11-
bootstrap="vendor/autoload.php"
12-
>
3+
<phpunit bootstrap="vendor/autoload.php" colors="true">
134
<testsuites>
145
<testsuite name="Promise Test Suite">
156
<directory>./tests/</directory>

0 commit comments

Comments
 (0)