Skip to content

Commit eb3f0d4

Browse files
committed
Merge pull request php-debugbar#166 from GrahamCampbell/tests
Fixed The Tests
2 parents 1c31408 + cda9eee commit eb3f0d4

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

.travis.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,7 @@ php:
88
- hhvm
99

1010
before_script:
11-
- travis_retry composer self-update
12-
- travis_retry composer install --no-interaction --prefer-source --dev
11+
- travis_retry composer install --no-interaction --prefer-source
1312

1413
script:
15-
- vendor/bin/phpunit --verbose
16-
17-
matrix:
18-
allow_failures:
19-
- php: hhvm
20-
fast_finish: true
14+
- vendor/bin/phpunit

phpunit.xml.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
32
<phpunit backupGlobals="false"
43
backupStaticAttributes="false"
4+
bootstrap="tests/bootstrap.php"
55
colors="true"
66
convertErrorsToExceptions="true"
77
convertNoticesToExceptions="true"
88
convertWarningsToExceptions="true"
99
processIsolation="false"
1010
stopOnFailure="false"
1111
syntaxCheck="false"
12-
bootstrap="tests/bootstrap.php"
12+
verbose="true"
1313
>
1414
<testsuites>
1515
<testsuite name="DebugBar Test Suite">

tests/bootstrap.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22

33
error_reporting(E_ALL | E_STRICT);
4+
date_default_timezone_set('Europe/London');
45

56
$loader = require(dirname(__DIR__) . '/vendor/autoload.php');
67
$loader->add('DebugBar\Tests', __DIR__);

0 commit comments

Comments
 (0)