From 588ece584deee88a60f0391f647e35cbebd58b2c Mon Sep 17 00:00:00 2001 From: Edwardro22 Date: Thu, 17 Nov 2016 14:13:24 +0100 Subject: [PATCH] small fix --- integration_tests.sh | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/integration_tests.sh b/integration_tests.sh index 91aa0de47..8e93c0301 100755 --- a/integration_tests.sh +++ b/integration_tests.sh @@ -1,32 +1,32 @@ #! /usr/bin/env sh ./test.sh gen=$? -echo 'go test github.com/cgrates/cgrates/apier/v1 -local' -go test github.com/cgrates/cgrates/apier/v1 -local +echo 'go test github.com/cgrates/cgrates/apier/v1 -tags=integration' +go test github.com/cgrates/cgrates/apier/v1 -tags=integration ap1=$? echo 'go test github.com/cgrates/cgrates/apier/v2 -tags=integration' go test github.com/cgrates/cgrates/apier/v2 -tags=integration ap2=$? -echo 'go test github.com/cgrates/cgrates/engine -local -integration' -go test github.com/cgrates/cgrates/engine -local -integration +echo 'go test github.com/cgrates/cgrates/engine -tags=integration' +go test github.com/cgrates/cgrates/engine -tags=integration en=$? -echo 'go test github.com/cgrates/cgrates/cdrc -local' -go test github.com/cgrates/cgrates/cdrc -local +echo 'go test github.com/cgrates/cgrates/cdrc -tags=integration' +go test github.com/cgrates/cgrates/cdrc -tags=integration cdrc=$? -echo 'go test github.com/cgrates/cgrates/config -local' -go test github.com/cgrates/cgrates/config -local +echo 'go test github.com/cgrates/cgrates/config -tags=integration' +go test github.com/cgrates/cgrates/config -tags=integration cfg=$? -echo 'go test github.com/cgrates/cgrates/utils -local' -go test github.com/cgrates/cgrates/utils -local +echo 'go test github.com/cgrates/cgrates/utils -tags=integration' +go test github.com/cgrates/cgrates/utils -tags=integration utl=$? echo 'go test github.com/cgrates/cgrates/general_tests -tags=integration' go test github.com/cgrates/cgrates/general_tests -tags=integration gnr=$? -echo 'go test github.com/cgrates/cgrates/agents -integration' -go test github.com/cgrates/cgrates/agents -integration +echo 'go test github.com/cgrates/cgrates/agents -tags=integration' +go test github.com/cgrates/cgrates/agents -tags=integration agts=$? -echo 'go test github.com/cgrates/cgrates/sessionmanager -integration' -go test github.com/cgrates/cgrates/sessionmanager -integration +echo 'go test github.com/cgrates/cgrates/sessionmanager -tags=integration' +go test github.com/cgrates/cgrates/sessionmanager -tags=integration smg=$? exit $gen && $ap1 && $ap2 && $en && $cdrc && $cfg && $utl && $gnr && $agts && $smg