Just released #paraunit 2.7.0, including PHPUnit deprecation support and a fix for an issue that was discovered by @PHPCSFixer adding a CI test against #PHP 8.5. They also found an issue with PHP itself.

Test you projects early against 8.5, it will help everyone!

https://alessandrolai.dev/releases/paraunit/2.7.0/

Paraunit 2.7.0: fix abnormal termination detection and add PHPUnit deprecation reporting

This new release includes a couple of improvements: the first one is the addition of PHPUnit deprecation as separate test issues, so that those will be reported in a separate category, as with PHPUnit itself; the second one stems from some issues detected by PHP-CS-Fixer under PHP 8.5, where some skipped tests were marked erroneously as “abnormal terminations”. I discovered that, when using the requires attribute, PHPUnit would report only a Skipped event, without the TestStarted, TestPrepared and TestFinished events, which would trigger this issue.

Alessandro Lai