Make test more resilient on slow windows CI
parent
17de5f78a3
commit
9a42f69a99
|
@ -128,8 +128,9 @@ class ProcessExecutorTest extends TestCase
|
||||||
$this->assertEquals(1, $process->countActiveJobs());
|
$this->assertEquals(1, $process->countActiveJobs());
|
||||||
$promise->cancel();
|
$promise->cancel();
|
||||||
$this->assertEquals(0, $process->countActiveJobs());
|
$this->assertEquals(0, $process->countActiveJobs());
|
||||||
|
$process->wait();
|
||||||
$end = microtime(true);
|
$end = microtime(true);
|
||||||
$this->assertTrue($end - $start < 0.5, 'Canceling took longer than it should, lasted '.($end - $start));
|
$this->assertTrue($end - $start < 2, 'Canceling took longer than it should, lasted '.($end - $start));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue