From 683a89487672621620ea4ff43e270758c7215d34 Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman <rjeffman@redhat.com> Date: Mon, 23 Jan 2023 14:33:10 -0300 Subject: [PATCH] upstream CI: increase Azure test timeout. Due to DNS issues and the increase number of tests, the timeout setting used for upstream tests was being reached. As we still have room for running the tests using Azure infrastructure, this patch increases the timeout to 240 minutes (4h), per worker. --- tests/azure/templates/galaxy_pytest_script.yml | 2 +- tests/azure/templates/galaxy_script.yml | 2 +- tests/azure/templates/playbook_fast.yml | 2 +- tests/azure/templates/playbook_tests.yml | 2 +- tests/azure/templates/pytest_tests.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/azure/templates/galaxy_pytest_script.yml b/tests/azure/templates/galaxy_pytest_script.yml index 68a051c9..d2ddf780 100644 --- a/tests/azure/templates/galaxy_pytest_script.yml +++ b/tests/azure/templates/galaxy_pytest_script.yml @@ -15,7 +15,7 @@ parameters: jobs: - job: Test_PyTests displayName: Run pytests on ${{ parameters.scenario }} - timeoutInMinutes: 120 + timeoutInMinutes: 240 steps: - task: UsePythonVersion@0 inputs: diff --git a/tests/azure/templates/galaxy_script.yml b/tests/azure/templates/galaxy_script.yml index 3564c9cc..67914014 100644 --- a/tests/azure/templates/galaxy_script.yml +++ b/tests/azure/templates/galaxy_script.yml @@ -22,7 +22,7 @@ parameters: jobs: - job: Test_Group${{ parameters.group_number }} displayName: Run playbook tests ${{ parameters.scenario }} (${{ parameters.group_number }}/${{ parameters.number_of_groups }}) - timeoutInMinutes: 120 + timeoutInMinutes: 240 variables: - template: variables.yaml - template: variables_${{ parameters.scenario }}.yaml diff --git a/tests/azure/templates/playbook_fast.yml b/tests/azure/templates/playbook_fast.yml index 962315a8..03bea221 100644 --- a/tests/azure/templates/playbook_fast.yml +++ b/tests/azure/templates/playbook_fast.yml @@ -21,7 +21,7 @@ parameters: jobs: - job: Test_Group${{ parameters.group_number }} displayName: Run playbook tests ${{ parameters.scenario }} (${{ parameters.group_number }}/${{ parameters.number_of_groups }}) - timeoutInMinutes: 120 + timeoutInMinutes: 240 variables: - template: variables.yaml - template: variables_${{ parameters.scenario }}.yaml diff --git a/tests/azure/templates/playbook_tests.yml b/tests/azure/templates/playbook_tests.yml index 712dfb62..44d44b1a 100644 --- a/tests/azure/templates/playbook_tests.yml +++ b/tests/azure/templates/playbook_tests.yml @@ -21,7 +21,7 @@ parameters: jobs: - job: Test_Group${{ parameters.group_number }} displayName: Run playbook tests ${{ parameters.scenario }} (${{ parameters.group_number }}/${{ parameters.number_of_groups }}) - timeoutInMinutes: 120 + timeoutInMinutes: 240 variables: - template: variables.yaml - template: variables_${{ parameters.scenario }}.yaml diff --git a/tests/azure/templates/pytest_tests.yml b/tests/azure/templates/pytest_tests.yml index 99fb3206..bf0e2a52 100644 --- a/tests/azure/templates/pytest_tests.yml +++ b/tests/azure/templates/pytest_tests.yml @@ -15,7 +15,7 @@ parameters: jobs: - job: Test_PyTests displayName: Run pytests on ${{ parameters.scenario }} - timeoutInMinutes: 120 + timeoutInMinutes: 240 variables: - template: variables.yaml - template: variables_${{ parameters.scenario }}.yaml -- GitLab