Last active
August 29, 2015 14:25
-
-
Save chukShirley/fad78b38014d57c58a8a to your computer and use it in GitHub Desktop.
Travis.xml for Doctrine (IBM DB2)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<phpunit bootstrap="../Doctrine/Tests/TestInit.php" colors="true"> | |
<php> | |
<var name="db_type" value="ibm_db2"/> | |
<var name="db_host" value="myDbName" /> | |
<var name="db_username" value="WEBTEST" /> | |
<var name="db_password" value="WEBTEST" /> | |
<var name="db_name" value="DCTRNTST" /> | |
<var name="db_port" value="3306"/> | |
<var name="tmpdb_type" value="ibm_db2"/> | |
<var name="tmpdb_host" value="myDbName" /> | |
<var name="tmpdb_username" value="WEBTEST" /> | |
<var name="tmpdb_password" value="WEBTEST" /> | |
<var name="tmpdb_port" value="3306"/> | |
</php> | |
<testsuites> | |
<testsuite name="Doctrine ORM Test Suite"> | |
<directory>./../Doctrine/Tests/ORM</directory> | |
</testsuite> | |
</testsuites> | |
<filter> | |
<whitelist addUncoveredFilesFromWhitelist="true"> | |
<directory suffix=".php">./../../lib/Doctrine</directory> | |
</whitelist> | |
</filter> | |
<groups> | |
<exclude> | |
<group>performance</group> | |
<group>locking_functional</group> | |
</exclude> | |
</groups> | |
</phpunit> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment