fastest icon indicating copy to clipboard operation
fastest copied to clipboard

Simple parallel testing execution... with some goodies for functional tests.

Results 17 fastest issues
Sort by recently updated
recently updated
newest added

It only remains to add support for sqlite connections but this is the first approach @DonCallisto

first thx for the great tool. I'm using the latest version 1.9.0 When i only set the URL in the .env: `DATABASE_URL=mysql://root:[email protected]/fwgshopmanager_test` I get following error: ` [ErrorException] Notice: Undefined...

We just started a new project with Symfony 5.4 and phpunit 9.5. We've only implemented standard authetnication and some basic entities and cruds, but already see strange random issues in...

Actually, the `$dbName` is computed either from `$params['dbname']` on `$params['master']['dbname']` and override only the `dbname` parameter (not the `master` one) and there is no slave management except for sqlite. This...

MongoDB adapter use Doctrine\MongoDB\Connection as the base connection class. This class belongs to the doctrine/mongodb project that is discontinued. This PR updates the MongoDB adapter to use the MongoDB\Client class...

This change brings support for including/excluding whole test classes with [the `@group` annotation and the `` tag](https://phpunit.readthedocs.io/en/7.4/configuration.html#groups) in the PHPUnit XML configuration file. The patch applies cleanly to both `master`...

Fixes #81 - built current `1.4` version phar with [box-project/box2](https://github.com/box-project/box2) - added `box.json` build config - ~~(misc) added phpstorm project dir `.idea` to gitignore file~~ To build new phar (assuming...

needs review

Hello, It appears that the class `CreateTestsQueueFromPhpUnitXML` only handles the testsuite configuration. This means that `` is ignored, and that for example some tests that you want to exclude by...

Currently within Symfony Flex projects doctrine configuration is like: ``` doctrine: dbal: url: '%env(DATABASE_URL)%' ``` Where this ```DATABASE_URL``` env is eg. ```mysql://[email protected]:3306/symfony?charset=utf8mb4&serverVersion=5.7``` With this database creations won't work as expected...

Here is an example of fastest output on the latest version: ![image](https://user-images.githubusercontent.com/1924829/46824821-b6c7b880-cd9a-11e8-90ff-9ac7b23a715c.png) Before the time was formatted, the last column looked much better: ![image](https://user-images.githubusercontent.com/1924829/46827681-f34ae280-cda1-11e8-950b-362c6672a1c0.png) The solution could be either to...