From c64d69356333057a72218d7a168ff71aa04ac748 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Tue, 10 Nov 2015 21:03:50 -0500 Subject: [PATCH] Update travis setup and remove old phpci config file --- .travis.yml | 2 ++ phpci.yml | 20 -------------------- phpunit.xml | 39 --------------------------------------- 3 files changed, 2 insertions(+), 59 deletions(-) delete mode 100644 phpci.yml delete mode 100644 phpunit.xml diff --git a/.travis.yml b/.travis.yml index 4a5c14e..6a91708 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,9 @@ before_script: script: - mkdir -p build/logs + - cd build - phpunit --coverage-clover build/logs/clover.xml + - cd ../ after_script: - wget https://scrutinizer-ci.com/ocular.phar diff --git a/phpci.yml b/phpci.yml deleted file mode 100644 index 540e001..0000000 --- a/phpci.yml +++ /dev/null @@ -1,20 +0,0 @@ -build_settings: - verbose: true - ignore: - - "tests" - -setup: - env: - PHPCI: true - -test: - php_docblock_checker: - allowed_warnings: 0 - skip_classes: true - php_loc: - php_mess_detector: - allow_failures: true - rules: - - "unusedcode" - - "naming" -complete: \ No newline at end of file diff --git a/phpunit.xml b/phpunit.xml deleted file mode 100644 index 0160988..0000000 --- a/phpunit.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - src/* - autoload.php - - - - - tests/core/core_test.php - tests/core/query_parser_test.php - tests/core/connection_manager_test.php - - - tests/databases/mysql/MySQLTest.php - tests/databases/mysql/MySQLQBTest.php - - - tests/databases/pgsql/PgSQLTest.php - tests/databases/pgsql/PgSQLQBTest.php - - - tests/databases/sqlite/SQLiteTest.php - tests/databases/sqlite/SQLiteQBTest.php - - - tests/databases/firebird/FirebirdTest.php - tests/databases/firebird/FirebirdQBTest.php - - - tests/databases/pdofirebird/PDOFirebirdTest.php - tests/databases/pdofirebird/PDOFirebirdQBTest.php - - - \ No newline at end of file