phpunit-speedtrap icon indicating copy to clipboard operation
phpunit-speedtrap copied to clipboard

Reports on slow-running tests in your PHPUnit test suite

Results 32 phpunit-speedtrap issues
Sort by recently updated
recently updated
newest added

I enabled the `stopOnSlow` setting, which appears to halt execution of PHPUnit, and yield a _successful_ response. Is there a different setting that would cause either the test or the...

To allow compatibility with `phpunit/phpunit:^9.0.0`, for which the `TestListener` interface will have been removed, an implementation using hooks need to be developed. For reference, see * https://github.com/sebastianbergmann/phpunit/issues/3389 * https://github.com/sebastianbergmann/phpunit/issues/3390 I...

enhancement

PHPUnit 8 introduced the Hooks Extension system which deprecated the Listener system. PHPUnit 9 then removed the deprecated Listener system. This PR completes the work started by @vlaurier in #67...

enhancement

/fixes #88 added a report renderer system that allows to export results in ng-warnings format **not tested yet in jenkins**

First test report allways like a slowly test For example ```pphp class GeneralTest extends IlluminateTestCase { public function testCool(): void { $this->assertTrue(true); } public function testNotCool(): void { usleep(300000); $this->assertTrue(true);...

As proposed in https://github.com/johnkary/phpunit-speedtrap/issues/85

These may be candidates for moving out of a 'large' test group.

Once we've found the slow tests, it might be handy to have them all annotated. That would let us find them again later, and also would let us configure PHPUnit...

Hello Thanks for your work, I'm wondering if there is a way to export the result of speedtrap in a file that could be read for example by warning next...