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

Grunt plugin for running phpunit.

Results 15 grunt-phpunit issues
Sort by recently updated
recently updated
newest added

GitHub changed the way Markdown headings are parsed, so this change fixes it. See [bryant1410/readmesfix](https://github.com/bryant1410/readmesfix) for more information. Tackles bryant1410/readmesfix#1

The following code does not work: ``` phpunit: { dev: { classes: { dir: 'php/' }, options: { logTap: 'phpunit.log', colors: true, bootstrap: 'php/bootstrap.php' } } } ``` Log: ```...

This allows to set php.ini settings using the d option, e.g.: ``` js options: { d: { 'error_reporting': 'E_ALL', ... } } ```

From PHPUnit 4.4 colors output was modified to only output colors when executed from terminal [(PR)](https://github.com/sebastianbergmann/phpunit/pull/1458), so this task doesn't display colors for versions 4.4 and 4.5 (current stable version)....

https://github.com/SaschaGalley/grunt-phpunit/blob/master/tasks/lib/phpunit.js#L36 I think that you want to return true? I know that this will tell the world that the task succeeded, but if you return false it will stop and...

I'm getting `Fatal error: Command failed: /bin/sh -c phpunit --verbose` after I run my command with configuration option (which includes coverage report generation). This stops further task stack execution Until...

I would like to use grunt-phpunit with CI Unit (https://github.com/Celc/CIUnit) I'm not quite sure how to set it up and was wondering if you had pointers? There is a phpunit.xml.dist...

We needed a way to get more control over the child_process execution of phpunit. The syntax is compatible to execMaxBuffer, and all other parameters are using the same syntax