We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I enable php_unit in test section in phpci.yml, I got exception "No TAP log found, please check the configuration.". But phpunit tests are ok.
I change line 152 in PHPCI/Plugin/PhpUnit.php to: $this->phpci->logExecOutput(true);
Then build with tests is working ok.
The text was updated successfully, but these errors were encountered:
@infisamk Do you do any output buffering in your code? The TAP parser relies on the standard output.
Sorry, something went wrong.
It's default Symfony's AppBundle and test.
Sorry, I am not familiar with the Symfony AppBundle.
You can try this patch I worked on as an alternative to the TAP parser: #1275
On Tue, Oct 25, 2016, 12:36 AM infisamk [email protected] wrote:
It's default Symfony's AppBundle and test. — You are receiving this because you commented. Reply to this email directly, view it on GitHub #1277 (comment), or mute the thread https://github.com/notifications/unsubscribe-auth/AAPd3X5kVo3ZPYz2m37kNOteBZqH3cKqks5q3YddgaJpZM4KeieM .
— You are receiving this because you commented.
Reply to this email directly, view it on GitHub #1277 (comment), or mute the thread https://github.com/notifications/unsubscribe-auth/AAPd3X5kVo3ZPYz2m37kNOteBZqH3cKqks5q3YddgaJpZM4KeieM .
Sincerely,
Pablo Tejada
From Mobile
Symfony framework use output buffer.
Default php_unit is working only with my change. New plugin is working ok.
No branches or pull requests
If I enable php_unit in test section in phpci.yml, I got exception "No TAP log found, please check the configuration.". But phpunit tests are ok.
I change line 152 in PHPCI/Plugin/PhpUnit.php to:
$this->phpci->logExecOutput(true);
Then build with tests is working ok.
The text was updated successfully, but these errors were encountered: