How do I extend the test timeout in circleci?
•
Java
I run some tests in circleci, some tests take longer, and then 10 minutes, because its UI tests run on headless browsers, and I install them in my circle yml
How to extend the timeout?
thank you
Solution
You need to use the timeout modifier in the configuration, as described in this document:
This is an example of doubling the default 600s to 1200s:
commands: - /bin/bash build_scripts/deploy_to_eb.sh: timeout: 1200
Cheers!
The content of this article comes from the network collection of netizens. It is used as a learning reference. The copyright belongs to the original author.
THE END
二维码