Commit 18c31bf7 authored by Bas de Nooijer's avatar Bas de Nooijer

Added phpunit config for travis-ci

parent b33c61a3
...@@ -8,5 +8,5 @@ before_script: ...@@ -8,5 +8,5 @@ before_script:
- wget http://getcomposer.org/composer.phar - wget http://getcomposer.org/composer.phar
- php composer.phar install - php composer.phar install
script: phpunit -c phpunit.xml.dist script: phpunit -c phpunit.xml.travis
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false" backupStaticAttributes="false" syntaxCheck="false" bootstrap="tests/bootstrap.php">
<testsuites>
<testsuite name="Solarium">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">library</directory>
<exclude>
<file>library/Solarium/Autoloader.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment