Remove PHP 5.2 from testing

This commit is contained in:
Timothy Warren 2014-02-19 13:45:05 -05:00
parent 65de660bff
commit 484548dc49
2 changed files with 16 additions and 18 deletions

View File

@ -1,7 +1,6 @@
language: php
php:
- 5.2
- 5.3
- 5.4
- 5.5
@ -17,5 +16,4 @@ script: cd tests && phpunit --coverage-text
matrix:
allow_failures:
- php: 5.2
- php: hhvm

View File

@ -39,7 +39,7 @@ class CoreTest extends Query_TestCase {
*/
public function testPHPVersion()
{
$this->assertTrue(version_compare(PHP_VERSION, "5.2", "ge"));
$this->assertTrue(version_compare(PHP_VERSION, "5.3", "ge"));
}
// --------------------------------------------------------------------------