Issue
Im running some tests in circleci and some of the tests are taking longer then 10 min cause its ui tests that run on a headless browser that Im installing in my circle.yml
How can I extend the time of the timeout?
thanks
Solution
You need to use the timeout
modifier in your config as explained in this doc:
https://circleci.com/docs/configuration#modifiers
Here is an example doubling the default 600s to 1200s:
commands:
- /bin/bash build_scripts/deploy_to_eb.sh:
timeout: 1200
Cheers
Answered By - Joan Answer Checked By - Mildred Charles (PHPFixing Admin)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.