We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8584824 commit 58173e1Copy full SHA for 58173e1
tests/Integration/Console/Components/TaskComponentTest.php
@@ -68,6 +68,8 @@ public function test_process_task(): void
68
69
public function test_successful_task(): void
70
{
71
+ $this->skipCI('Flaky on CI');
72
+
73
$this->console
74
->withoutPrompting()
75
->call(function (Console $console): void {
tests/Integration/FrameworkIntegrationTestCase.php
@@ -165,6 +165,15 @@ protected function skipWindows(string $reason): void
165
$this->markTestSkipped($reason);
166
}
167
168
+ protected function skipCI(string $reason): void
169
+ {
170
+ if (getenv('CI') !== 'true') {
171
+ return;
172
+ }
173
174
+ $this->markTestSkipped($reason);
175
176
177
/**
178
* @template TClassName of object
179
* @param class-string<TClassName> $className
0 commit comments