From fa3c3efb388204817271981c652be4d972a62efe Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Mon, 17 Feb 2014 17:07:17 -0500 Subject: [PATCH] Move phpunit xml file into a sane place --- .travis.yml | 4 ++-- phpunit.xml | 38 ++++++++++++++++++++++++++++++++++++++ tests/phpunit.xml | 36 ------------------------------------ 3 files changed, 40 insertions(+), 38 deletions(-) create mode 100644 phpunit.xml delete mode 100644 tests/phpunit.xml diff --git a/.travis.yml b/.travis.yml index 320e8e7..9da885a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,9 +13,9 @@ before_script: - sh -c "psql -c 'create database test;' -U postgres" - sh -c "mysql -e 'create database IF NOT EXISTS test;'" -script: cd tests && phpunit +script: phpunit matrix: allow_failures: - php: hhvm - - php: 5.2 + - php: 5.2 \ No newline at end of file diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..649fe7f --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,38 @@ + + + + + + coverage + docs + tests + vendor + . + + + + + tests/core/core.php + tests/core/db_qp_test.php + + + tests/databases/firebird/FirebirdTest.php + tests/databases/firebird/FirebirdQBTest.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/mysql/SqliteQBTest.php + + + \ No newline at end of file diff --git a/tests/phpunit.xml b/tests/phpunit.xml deleted file mode 100644 index 187ac6f..0000000 --- a/tests/phpunit.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - ../coverage - ../docs - . - - - - - core/core.php - core/db_qp_test.php - - - databases/firebird/FirebirdTest.php - databases/firebird/FirebirdQBTest.php - - - databases/mysql/MySQLTest.php - databases/mysql/MySQLQBTest.php - - - databases/pgsql/PgSQLTest.php - databases/pgsql/PgSQLQBTest.php - - - databases/sqlite/SqliteTest.php - databases/mysql/SqliteQBTest.php - - - \ No newline at end of file