1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 22:52:32 +01:00
flox/backend/phpunit.xml
Tim Meier 498d7baa51 Add api for updating files (#50)
* Update vagrantfile

* Add http basic auth

* Add new api for FP to call

* refactor
2017-02-19 01:55:33 +01:00

34 lines
1.2 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Application Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
</whitelist>
</filter>
<php>
<env name="APP_ENV" value="testing"/>
<env name="DB_CONNECTION" value="sqlite"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
<env name="TMDB_API_KEY" value="notfound"/>
<env name="FP_HOST" value="localhost"/>
<env name="FP_PORT" value="3001"/>
<env name="HTTP_BASIC_USERNAME" value="jon"/>
<env name="HTTP_BASIC_PASSWORD" value="snow"/>
</php>
</phpunit>