Setup phpci

This commit is contained in:
Timothy Warren 2014-07-11 11:31:29 -04:00
parent 2ccac504da
commit 884aa10a3b
3 changed files with 50 additions and 41 deletions

19
phpci.yml Normal file
View File

@ -0,0 +1,19 @@
build_settings:
verbose: true
ignore:
- "tests"
setup:
env:
PHPCI: true
test:
php_unit:
run_from: 'tests'
coverage: '../coverage/'
php_docblock_checker:
allowed_warnings: 0
skip_classes: true
php_loc:
complete:

View File

@ -121,14 +121,4 @@ if (extension_loaded('pdo_sqlite'))
Query($params);
}
// If Firebird (interbase) extension does not exist,
// create a fake class to suppress errors from skipped tests
if ( ! function_exists('fbird_connect'))
{
class Firebird {
public $sql;
public $util;
}
}
// End of bootstrap.php