PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Wednesday, September 28, 2022

[FIXED] How to extend timeout for tests in circleci?

 September 28, 2022     circleci, continuous-deployment, continuous-integration, java, scala     No comments   

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)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing