mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
# Conflicts: # composer.json # config/bundles.php # config/packages/doctrine_migrations_chill.yaml # package.json # src/Bundle/ChillMainBundle/DataFixtures/ORM/LoadUserGroup.php # src/Bundle/ChillMainBundle/DependencyInjection/ChillMainExtension.php # src/Bundle/ChillMainBundle/Entity/UserGroup.php # src/Bundle/ChillMainBundle/Resources/public/chill/js/date.ts # src/Bundle/ChillMainBundle/Resources/public/lib/download-report/download-report.js # src/Bundle/ChillMainBundle/Resources/public/module/ckeditor5/editor_config.ts # src/Bundle/ChillMainBundle/Resources/public/module/ckeditor5/index.ts # src/Bundle/ChillMainBundle/Resources/public/page/export/download-export.js # src/Bundle/ChillMainBundle/Resources/public/types.ts # src/Bundle/ChillMainBundle/Resources/views/Dev/dev.assets.html.twig # src/Bundle/ChillMainBundle/Templating/Entity/UserGroupRender.php # src/Bundle/ChillMainBundle/chill.api.specs.yaml # src/Bundle/ChillMainBundle/chill.webpack.config.js # src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/components/Comment.vue # src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/components/PersonsAssociated.vue # src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/components/Resources.vue # src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourse/components/Resources/WriteComment.vue # src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourseWorkEdit/App.vue # src/Bundle/ChillPersonBundle/Resources/public/vuejs/AccompanyingCourseWorkEdit/components/FormEvaluation.vue # src/Bundle/ChillPersonBundle/Resources/public/vuejs/HouseholdMembersEditor/components/Household.vue # src/Bundle/ChillPersonBundle/Resources/public/vuejs/HouseholdMembersEditor/components/MemberDetails.vue # src/Bundle/ChillPersonBundle/Resources/public/vuejs/HouseholdMembersEditor/components/PersonComment.vue # src/Bundle/ChillPersonBundle/Resources/public/vuejs/_components/AddPersons.vue # src/Bundle/ChillPersonBundle/Resources/public/vuejs/_components/Entity/PersonRenderBox.vue # src/Bundle/ChillPersonBundle/Resources/public/vuejs/_components/Entity/PersonText.vue # src/Bundle/ChillPersonBundle/Resources/public/vuejs/_js/i18n.ts # tests/app/config/bootstrap.php
89 lines
3.8 KiB
XML
89 lines
3.8 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="TicketBundle">
|
|
<directory suffix="Test.php">src/Bundle/ChillTicketBundle/tests/</directory>
|
|
</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>
|