From 9961b7b72315dfb4c7318a3c4e2459c0fcb8e06c Mon Sep 17 00:00:00 2001 From: ionutboangiu Date: Mon, 19 Aug 2024 12:51:03 +0300 Subject: [PATCH] run integration and flaky scripts separately in workflow --- .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 28a08b772..09000a67e 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