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
{{ message }}
This repository was archived by the owner on Apr 3, 2026. It is now read-only.
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 its fixed, I'm resorting to raw execution..
grunt.registerTask('test', '', function () {
"use strict";
var exec = require('child_process').execSync;
result = exec("phpunit -c phpunit.xml", { encoding: 'utf8' });
console.log(result);
});
I'm getting
Fatal error: Command failed: /bin/sh -c phpunit --verboseafter I run my command with configuration option (which includes coverage report generation). This stops further task stack executionUntil its fixed, I'm resorting to raw execution..
But it gives the same thing. I guess its phpunit/nodejs issue, looking at https://github.com/joyent/node/blob/master/lib/child_process.js