You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then, I'm wondering if this should not be reflected in paratest: otherwise, subscribers applying on data providers event will work without paratest, but will not have effect in paratest.
WDYT?
You'll find here some kind of a reproducer: running test suite of this lib with paratest fails, whereas it passes with regular phpunit run. The failures occur because the extension bootstrap is called too late.
The text was updated successfully, but these errors were encountered:
Then, I'm wondering if this should not be reflected in paratest
It surely has to.
The fix is straightforward, but I need a reproducer in ParaTest's test suite, not trivial to code.
If you are able to propose a PR just with the test that would be super helpful
Since PHPUnit 11.4,
bootstrap()
method is called before data provider, and data provider events are dispatched synchronously (before this, they were deferred).Then, I'm wondering if this should not be reflected in paratest: otherwise, subscribers applying on data providers event will work without paratest, but will not have effect in paratest.
WDYT?
You'll find here some kind of a reproducer: running test suite of this lib with paratest fails, whereas it passes with regular phpunit run. The failures occur because the extension bootstrap is called too late.
The text was updated successfully, but these errors were encountered: