Skip to content

Commit

Permalink
Set timeout for push to transifex to 30 mins instead of 10 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Sep 8, 2024
1 parent 9484870 commit c1eba1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup/unix-ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def install_env():
setenv('CALIBRE_QT_PREFIX', '$SW/qt')


def run(*args):
def run(*args, timeout=600):
if len(args) == 1:
args = shlex.split(args[0])
print(' '.join(args), flush=True)
Expand Down Expand Up @@ -164,7 +164,7 @@ def main():
install_env()
get_tx()
os.environ['TX'] = os.path.abspath('tx')
run(sys.executable, 'setup.py', 'pot')
run(sys.executable, 'setup.py', 'pot', timeout=30 * 60)
elif action == 'test':
os.environ['CI'] = 'true'
os.environ['OPENSSL_MODULES'] = os.path.join(SW, 'lib', 'ossl-modules')
Expand Down

0 comments on commit c1eba1c

Please sign in to comment.