From 6d3d7b3b2366c81632afc12ce0238dda68e61963 Mon Sep 17 00:00:00 2001 From: ionutboangiu Date: Thu, 16 May 2024 18:23:03 +0300 Subject: [PATCH] Run integration and flaky scripts separately in workflow flaky_test.sh failure will be ignored --- .github/workflows/integration_tests.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/integration_tests.yaml b/.github/workflows/integration_tests.yaml index 2a2bec5bf..c442eba75 100644 --- a/.github/workflows/integration_tests.yaml +++ b/.github/workflows/integration_tests.yaml @@ -48,6 +48,11 @@ jobs: run: | ansible-playbook data/ansible/integration_tests/main.yaml -i localhost, -c local -e "ansible_user=$(whoami) cgrates_dir=$GITHUB_WORKSPACE clone_repository=false install_go=false" + - name: Run flaky tests + continue-on-error: true + run: | + sudo env "PATH=$PATH" ./flaky_test.sh + - name: Run integration tests run: | sudo env "PATH=$PATH" ./integration_test.sh