Add PHP 5.5 in Travis CI
This commit is contained in:
parent
1ab25e80e6
commit
79038d3c63
|
|
@ -25,6 +25,7 @@ script: ./vendor/bin/phpunit
|
|||
|
||||
matrix:
|
||||
include:
|
||||
- php: 5.5
|
||||
- php: 5.6
|
||||
- php: 7.0
|
||||
script:
|
||||
|
|
|
|||
|
|
@ -713,6 +713,10 @@ class AuthControllerTest extends TestCase
|
|||
|
||||
public function testCaptcha()
|
||||
{
|
||||
if (!function_exists('imagettfbbox') || getenv('TRAVIS_PHP_VERSION' == '5.5')) {
|
||||
$this->markTestSkipped('There are some problems with PHP 5.5 on Travis CI');
|
||||
}
|
||||
|
||||
$this->get('/auth/captcha')
|
||||
->assertResponseStatus(200)
|
||||
->seeHeader('Content-Type', 'image/png')
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user