From 639029349d72bbe15a5dbf445d525ec976415dd9 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Fri, 17 Mar 2023 22:49:25 +0000 Subject: [PATCH] chore: skips parallel on windows --- tests/Visual/Parallel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Visual/Parallel.php b/tests/Visual/Parallel.php index 6c4c6a0c..a5a9d844 100644 --- a/tests/Visual/Parallel.php +++ b/tests/Visual/Parallel.php @@ -17,4 +17,4 @@ $run = function () { test('parallel', function () use ($run) { expect($run())->toContain('Tests: 2 deprecated, 3 warnings, 4 incomplete, 1 notice, 4 todos, 15 skipped, 635 passed (1573 assertions)') ->toContain('Parallel: 3 processes'); -}); +})->skip(PHP_OS_FAMILY === 'Windows');