FIX Tests for 3.2

This commit is contained in:
Damian Mooyman 2015-11-03 11:35:31 +13:00
parent 0d736d0f3e
commit 358c294092
2 changed files with 22 additions and 13 deletions

View File

@ -2,18 +2,21 @@
language: php language: php
php: php:
- 5.3 - 5.6
sudo: false sudo: false
env: env:
- DB=MYSQL CORE_RELEASE=master - DB=MYSQL CORE_RELEASE=3.2
- DB=PGSQL CORE_RELEASE=master
matrix: matrix:
include: include:
- php: 5.4 - php: 5.4
env: DB=MYSQL CORE_RELEASE=master env: DB=PGSQL CORE_RELEASE=3.2
- php: 5.3
env: DB=MYSQL CORE_RELEASE=3.2
- php: 5.5
env: DB=MYSQL CORE_RELEASE=3
before_script: before_script:
- git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support - git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support
@ -21,4 +24,4 @@ before_script:
- cd ~/builds/ss - cd ~/builds/ss
script: script:
- phpunit reports/tests/ - vendor/bin/phpunit reports/tests/

View File

@ -4,15 +4,21 @@
"homepage": "http://silverstripe.org", "homepage": "http://silverstripe.org",
"license": "BSD-3-Clause", "license": "BSD-3-Clause",
"keywords": ["silverstripe", "cms", "reports"], "keywords": ["silverstripe", "cms", "reports"],
"authors": [{ "authors": [
{
"name": "SilverStripe", "name": "SilverStripe",
"homepage": "http://silverstripe.com" "homepage": "http://silverstripe.com"
}, { },
{
"name": "The SilverStripe Community", "name": "The SilverStripe Community",
"homepage": "http://silverstripe.org" "homepage": "http://silverstripe.org"
}], }
],
"require": { "require": {
"php": ">=5.3.3", "php": ">=5.3.3",
"silverstripe/framework": ">=3.1.x-dev" "silverstripe/framework": "~3.2"
},
"require-dev": {
"phpunit/PHPUnit": "~3.7"
} }
} }