-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
16 lines (16 loc) · 960 Bytes
/
phpunit.xml
File metadata and controls
16 lines (16 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.5/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" executionOrder="depends,defects" beStrictAboutOutputDuringTests="true" processIsolation="false" stopOnFailure="true" cacheDirectory=".phpunit.cache" requireCoverageMetadata="false" beStrictAboutCoverageMetadata="false">
<testsuites>
<testsuite name="GeoLocation Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<php>
<env name="GEOLOCATION_IPINFO_ACCESS_TOKEN" value=""/>
<env name="GEOLOCATION_CACHE_TTL" value="4096"/>
<env name="GEOLOCATION_DRIVER" value="ipinfo"/>
<env name="MAXMIND_DATABASE_PATH" value="storage/app/geoip/test.mmdb"/>
<env name="GEOLOCATION_CACHE_ENABLED" value="false"/>
<env name="APP_ENV" value="testing"/>
</php>
</phpunit>