Skip to content

Commit

Permalink
Removed temporary unit test execution with PHPUnit in PHP 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianLeChat committed Nov 22, 2024
1 parent 075c4c3 commit eed942f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/symfony.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,5 @@ jobs:
- name: Run PHP Mess Detector
run: vendor/bin/phpmd ./src github phpmd.xml.dist
- name: Execute tests with PHPUnit
if: matrix.php-version != '8.4' # https://github.com/symfony/symfony/issues/49069
run: vendor/bin/phpunit
4 changes: 2 additions & 2 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit colors="true" bootstrap="tests/bootstrap.php" convertDeprecationsToExceptions="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd">
<phpunit colors="true" bootstrap="tests/bootstrap.php" backupGlobals="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd">
<php>
<ini name="display_errors" value="1" />
<ini name="error_reporting" value="-1" />
Expand All @@ -10,7 +10,7 @@
<server name="SHELL_VERBOSITY" value="-1" />
<server name="SYMFONY_PHPUNIT_REMOVE" value="" />
<server name="SYMFONY_PHPUNIT_VERSION" value="9.6" />
<server name="SYMFONY_DEPRECATIONS_HELPER" value="disabled=1" />
<server name="SYMFONY_DEPRECATIONS_HELPER" value="disabled" />
</php>

<testsuites>
Expand Down

0 comments on commit eed942f

Please sign in to comment.