From 395e1a95192ae3fd9fba242cc17a759b5a527a2e Mon Sep 17 00:00:00 2001 From: Igor Date: Thu, 26 Jun 2025 15:22:50 +0900 Subject: [PATCH 1/3] fix config xml trigger --- tests/api/tests_ui/freestyle/data.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/api/tests_ui/freestyle/data.py b/tests/api/tests_ui/freestyle/data.py index 6a1ab754d..5e9326ae8 100644 --- a/tests/api/tests_ui/freestyle/data.py +++ b/tests/api/tests_ui/freestyle/data.py @@ -36,7 +36,13 @@ def get_freestyle_scheduled_xml(cls, description: str, timer: str) -> str: false - + + + echo ID=$(date +%s | cut -c1-2) + sleep 35 + + + From e638dd3b83c87c1ef172ec7432bcb4e012d94388 Mon Sep 17 00:00:00 2001 From: Igor Date: Thu, 26 Jun 2025 15:32:08 +0900 Subject: [PATCH 2/3] fix config xml trigger --- .github/workflows/continuous_integration.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index 9b8edddf4..af3ecd8e0 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -1,6 +1,9 @@ name: Run the tests on pull requests on: + push: + branches: + - main pull_request: branches: - main From 9ed05d7cbe17697f65389595de8168f57d0e3588 Mon Sep 17 00:00:00 2001 From: Igor Date: Thu, 26 Jun 2025 16:46:24 +0900 Subject: [PATCH 3/3] Run tests from tests/api/tests_ui only --- .github/workflows/continuous_integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index af3ecd8e0..3288442b2 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -72,8 +72,8 @@ jobs: - name: Wait for the Jenkins run: ./.github/wait-for-jenkins.sh - - name: pytest run all tests - run: pytest --alluredir=build/allure-results + - name: Run tests from tests/api/tests_ui only + run: pytest tests/api/tests_ui --alluredir=build/allure-results - name: Get Allure history uses: actions/checkout@v4.2.2