mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
[WIP] first import of automated recipes [WIP] fix configuration file to be able to compile kernel and serve route [WIP] first build of assets [WIP] Continue working on configuration to load a page [WIP] Reset the bin directory [WIP] remove default migrations files [WIP] fix configuration for running tests [WIP] Installation instructions Fix the default firewall in test login [WIP] fix cs [WIP] update gitlab-ci [WIP] update gitlab-ci [WIP] update gitlab ci [WIP] fix config for running tests [WIP] fix gitlab ci [WIP] try tests/bootstrap php file from symfony bridge instead of phpunit recipe remove kernel.php file fix loading of entrypoint.json in test [wip] increase memory limit for phpstan in test/ci [WIP]: set the correct timezone directly within the phpunit.xml.dist file [WIP]: fix security configuration WIP: fix config for testing
85 lines
3.6 KiB
XML
85 lines
3.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
|
backupGlobals="false"
|
|
colors="true"
|
|
bootstrap="tests/bootstrap.php"
|
|
>
|
|
<php>
|
|
<ini name="display_errors" value="1" />
|
|
<ini name="error_reporting" value="-1"/>
|
|
<server name="APP_ENV" value="test" force="true"/>
|
|
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[direct]=93&max[indirect]=999999"/>
|
|
<server name="SHELL_VERBOSITY" value="-1"/>
|
|
<server name="SYMFONY_PHPUNIT_REMOVE" value="" />
|
|
<server name="SYMFONY_PHPUNIT_VERSION" value="9.5" />
|
|
<ini name="date.timezone" value="Europe/Brussels" />
|
|
</php>
|
|
<testsuites>
|
|
<!--
|
|
<testsuite name="ActivityBundle">
|
|
<directory suffix="Test.php">src/Bundle/ChillActivityBundle/Tests/</directory>
|
|
</testsuite>
|
|
-->
|
|
<testsuite name="AsideActivityBundle">
|
|
<directory suffix="Test.php">src/Bundle/ChillAsideActivityBundle/src/Tests/</directory>
|
|
</testsuite>
|
|
<testsuite name="BudgetBundle">
|
|
<directory suffix="Test.php">src/Bundle/ChillBudgetBundle/Tests/</directory>
|
|
</testsuite>
|
|
<testsuite name="CalendarBundle">
|
|
<directory suffix="Test.php">src/Bundle/ChillCalendarBundle/Tests/</directory>
|
|
</testsuite>
|
|
<!-- Missing CustomFieldBundle -->
|
|
<testsuite name="DocGeneratorBundle">
|
|
<directory suffix="Test.php">src/Bundle/ChillDocGeneratorBundle/tests/</directory>
|
|
</testsuite>
|
|
<testsuite name="DocStoreBundle">
|
|
<directory suffix="Test.php">src/Bundle/ChillDocStoreBundle/Tests/</directory>
|
|
</testsuite>
|
|
<!--
|
|
<testsuite name="EventBundle">
|
|
<directory suffix="Test.php">src/Bundle/ChillEventBundle/tests/</directory>
|
|
</testsuite>
|
|
-->
|
|
<testsuite name="MainBundle">
|
|
<directory suffix="Test.php">src/Bundle/ChillMainBundle/Tests/</directory>
|
|
</testsuite>
|
|
<testsuite name="PersonBundle">
|
|
<directory suffix="Test.php">src/Bundle/ChillPersonBundle/Tests/</directory>
|
|
<!-- we are rewriting accompanying periods... Work in progress -->
|
|
<exclude>src/Bundle/ChillPersonBundle/Tests/Controller/AccompanyingPeriodControllerTest.php</exclude>
|
|
<!-- we are rewriting address, Work in progress -->
|
|
<exclude>src/Bundle/ChillPersonBundle/Tests/Controller/PersonAddressControllerTest.php</exclude>
|
|
<!-- find a solution to create multiple configs -->
|
|
<exclude>src/Bundle/ChillPersonBundle/Tests/Controller/PersonControllerUpdateWithHiddenFieldsTest.php</exclude>
|
|
<!-- temporarily removed, the time to find a fix -->
|
|
<exclude>src/Bundle/ChillPersonBundle/Tests/Controller/PersonDuplicateControllerViewTest.php</exclude>
|
|
</testsuite>
|
|
<!--
|
|
<testsuite name="ReportBundle">
|
|
<directory suffix="Test.php">src/Bundle/ChillReportBundle/Tests/</directory>
|
|
</testsuite>
|
|
-->
|
|
<!--
|
|
<testsuite name="TaskBundle">
|
|
<directory suffix="Test.php">src/Bundle/ChillTaskBundle/Tests</directory>
|
|
</testsuite>
|
|
-->
|
|
<testsuite name="ThirdPartyBundle">
|
|
<directory suffix="Test.php">src/Bundle/ChillThirdPartyBundle/Tests</directory>
|
|
</testsuite>
|
|
<testsuite name="WopiBundle">
|
|
<directory suffix="Test.php">src/Bundle/ChillWopiBundle/tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<!-- Run `composer require symfony/panther` before enabling this extension -->
|
|
<!--
|
|
<extensions>
|
|
<extension class="Symfony\Component\Panther\ServerExtension" />
|
|
</extensions>
|
|
-->
|
|
</phpunit>
|