From 225b7d058d0c2512de778ba2e9a7cc926f88023f Mon Sep 17 00:00:00 2001 From: ionutboangiu Date: Thu, 23 May 2024 17:03:08 +0300 Subject: [PATCH] Run dispatcher tests separately in workflow until fixed Removed dispatchers from testable integration packages inside script. Add back once its unstable tests are fixed. --- .github/workflows/integration_tests.yaml | 10 +++++++++- integration_test.sh | 3 ++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration_tests.yaml b/.github/workflows/integration_tests.yaml index 3a995f1c8..543fc91f3 100644 --- a/.github/workflows/integration_tests.yaml +++ b/.github/workflows/integration_tests.yaml @@ -57,10 +57,18 @@ jobs: sudo env "PATH=$PATH" ./flaky_test.sh - name: Run unstable offline tests for *internal separately until fixed - continue-on-error: true + continue-on-error: true run: | sudo env "PATH=$PATH" go test github.com/cgrates/cgrates/apier/v1 -tags=offline -dbtype=*internal + - name: Run dispatcher tests separately until its unstable tests are fixed + continue-on-error: true + run: | + sudo env "PATH=$PATH" go test github.com/cgrates/cgrates/dispatchers -tags=integration -dbtype=*internal + sudo env "PATH=$PATH" go test github.com/cgrates/cgrates/dispatchers -tags=integration -dbtype=*mysql + sudo env "PATH=$PATH" go test github.com/cgrates/cgrates/dispatchers -tags=integration -dbtype=*mongo + sudo env "PATH=$PATH" go test github.com/cgrates/cgrates/dispatchers -tags=integration -dbtype=*postgres + - name: Run integration tests run: | sudo env "PATH=$PATH" ./integration_test.sh diff --git a/integration_test.sh b/integration_test.sh index 4848e4ddd..9198741df 100755 --- a/integration_test.sh +++ b/integration_test.sh @@ -8,7 +8,8 @@ # Example: # ./integration_test.sh -dbtype=*mysql -rpc=*gob -packages=("agents" "apier/v1" "apier/v2" "dispatchers" "engine" "ers" "loaders" "general_tests" "sessions") +# Temporarily skip dispatcher tests until its unstable tests are fixed +packages=("agents" "apier/v1" "apier/v2" "engine" "ers" "loaders" "general_tests" "sessions") dbtypes=("*internal" "*mysql" "*mongo" "*postgres") # Tests that are independent of the dbtype flag and run only once