Skip to content

Commit ff176b7

Browse files
authored
Merge pull request #45 from zammad/mg/maintenance/ci-timeouts
Maintenance: Avoid timeout problems in CI.
2 parents 9c49b24 + 5e43a86 commit ff176b7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/ZammadAPIClient/Resource/AbstractBaseTest.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ abstract class AbstractBaseTest extends TestCase
1616

1717
public static function setUpBeforeClass()
1818
{
19-
$client_config = [];
19+
$client_config = [
20+
# Set a high timeout for tests to work with slow CI.
21+
'timeout' => 30,
22+
];
2023

2124
$env_keys = [
2225
'url' => 'ZAMMAD_PHP_API_CLIENT_UNIT_TESTS_URL',

0 commit comments

Comments
 (0)