collision
collision copied to clipboard
💥 Collision is a beautiful error reporting tool for command-line applications
When PHP warnings are triggered in a test case, the output does not show any details, like in which file the warning was triggered. Running the tests with --display-warnings gives...
Hello! Get this error. Changed ulimit -n and fs.file-max, it didn't work. ``` [2024-01-23 15:48:13] production.ERROR: Uncaught ErrorException: include(/var/www/laravel/vendor/nunomaduro/collision/src/Adapters/Laravel/IgnitionSolutionsRepository.php): Failed to open stream: Too many open files in /var/www/laravel/vendor/composer/ClassLoader.php:576 Stack...
This is a fix for #293. Warnings should not be suppressed, unless you also suppress the output on `STDERR`.
If one wishes to only use the PHPUnit 10 printer, it is unclear how to do this, since there is no extension to bootstrap.
If there are no tests in a test class file, [PHPUnit raises a warning](https://github.com/sebastianbergmann/phpunit/blob/8f46528d874878045526dd58b8d6b69a4b5c749a/src/Framework/TestSuite.php#L129) (`Event\Facade::emitter()->testRunnerTriggeredWarning()` - 'no tests found in class') and will pass on a non-zero value to `STDERR`....
We use PCOV to collect code coverage. However, we only enable PCOV when we are running tests(using `-d pcov.enabled=1`), so that it doesn't slow down any other running of the...
I'm pretty sure this would solve the problem explained in https://github.com/nunomaduro/collision/issues/284 . It works with both `php -d pcov.enabled=1 artisan test --coverage -d pcov.enabled=1` and `php -d pcov.enabled=1 artisan test...
Hi, I managed to setup collision without issues in a project using PHPUnit v9 and collision v6. However it was quite hard to set it up in a project using...
Hello everyone, the situation that occurred was this: I'm trying to load a collection of data into a laravel project, just once, to be able to check if it contains...