We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eab2c20 commit 8315977Copy full SHA for 8315977
1 file changed
run-tests.php
@@ -651,6 +651,12 @@ function main(): void
651
}
652
653
654
+ if (!defined('STDIN') || !stream_isatty(STDIN)
655
+ || !defined('STDOUT') || !stream_isatty(STDOUT)
656
+ || !defined('STDERR') || !stream_isatty(STDERR)) {
657
+ $environment['SKIP_IO_CAPTURE_TESTS'] = '1';
658
+ }
659
+
660
if ($selected_tests && count($test_files) === 0) {
661
echo "No tests found.\n";
662
return;
0 commit comments