Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioGattolla committed Jan 28, 2025
1 parent 680ee7c commit 849c5d1
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1 +1,31 @@
<?php
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" executionOrder="random" failOnWarning="true" failOnRisky="true" failOnEmptyTestSuite="true" beStrictAboutOutputDuringTests="true" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<testsuites>
<testsuite name="DefStudio Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage>
<report>
<html outputDirectory="build/coverage"/>
<text outputFile="build/coverage.txt"/>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<logging>
<junit outputFile="build/report.junit.xml"/>
</logging>
<php>
<server name="SANDOBOX_TELEGRAM_BOT_TOKEN" value=":fake_bot_token:"/>
<server name="SANDBOX_TELEGRAM_CHAT_ID" value=""/>
<server name="SANDOBOX_TELEGRAM_PAYMENT_PROVIDER_TOKEN" value=""/>
</php>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory>./src/Exceptions</directory>
</exclude>
</source>
</phpunit>

0 comments on commit 849c5d1

Please sign in to comment.