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
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
If you're using Circle CI 2.0, the syntax is no_output_timeout:
- run:
name: Running Tests
command: ./my-test.sh
no_output_timeout: 20m
More details: https://circleci.com/docs/2.0/configuration-reference/#run