Files
archived-FOSOAuthServerBundle/phpunit.xml.dist
Pierre du Plessis dc8ff34336 Move Travis to GH Actions and fix CI builds (#690)
* Move Travis config to GH Actions

* Run PHPStan in Continuous integration GH Action

* Run unit tests against different Symfony versions

* Fix unit tests

* Fix tools installation in GHA

* Fix Mongodb tests

* Install symfony/form and doctrine/annotations for unit tests

* Use installed version of phpstan

* Fix CS

* Normalize composer.json

* Run composer install before phpstan

* Add phpstan-baseline file

* Remove support for Propel

* Fix Makefile syntax and Symfony versions in GHA

* Update PHPStan baseline

* Use ramsey/composer-install for dependencies

* Add test dependencies during GH run

* Fix dependencies install

* Add SYMFONY_DEPRECATIONS_HELPER env variable

* Require PHPUnit min 8.5.23

* Update minimum version of php-mock

* Disallow Symfony version 6 for some components

* Increase deprecation notices

* Remove PHP 8.1 from GH actions

Support and tests for PHP 8.1 can be added later

* Limit symfony/form to 4.4 || 5.1

* Combine GH workflows to a single workflow
2022-03-24 11:22:23 +01:00

28 lines
818 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="Tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="FOSOAuthServerBundle Test Suite">
<directory suffix="Test.php">./Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./Resources</directory>
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
<php>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[total]=293&amp;max[self]=38&amp;max[direct]=36"/>
</php>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
</listeners>
</phpunit>