Skip to content

Commit

Permalink
Merge pull request #2 from eventum/travis-7.2
Browse files Browse the repository at this point in the history
update travis to build all php versions.
  • Loading branch information
glensc authored Oct 15, 2017
2 parents addd672 + eebb94c commit 4f2c47e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
31 changes: 17 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
language: php
sudo: false
dist: trusty

php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- nightly
- hhvm

matrix:
jobs:
fast_finish: true
allow_failures:
- php: 7.0
- php: nightly
- php: hhvm
- php: "hhvm"
include:
- php: "5.3"
dist: precise
- php: "5.4"
- php: "5.5"
- php: "5.6"
- php: "7.0"
- php: "7.1"
- php: "7.2"
- php: "nightly"
- php: "hhvm"

cache:
apt: true
Expand All @@ -25,8 +26,10 @@ cache:

install:
- composer install --no-interaction --prefer-dist
- composer require --dev phpunit/phpunit

script:
- phpunit -v --debug
- vendor/bin/phpunit --version
- vendor/bin/phpunit --verbose

# vim:ts=2:sw=2:et
4 changes: 1 addition & 3 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

namespace Eventum\RPC\Test;

use PHPUnit_Framework_TestCase;

class TestCase extends PHPUnit_Framework_TestCase
class TestCase extends \PHPUnit\Framework\TestCase
{
}

0 comments on commit 4f2c47e

Please sign in to comment.