From 4c6514bf4f55a15606068b5cf95fa5bf14279298 Mon Sep 17 00:00:00 2001 From: Radu Ioan Fericean Date: Fri, 25 Mar 2016 15:54:57 +0200 Subject: [PATCH] revert local tests till we found a better solution --- local_test.sh | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/local_test.sh b/local_test.sh index 4218bd3bd..05577d629 100755 --- a/local_test.sh +++ b/local_test.sh @@ -1,5 +1,32 @@ #! /usr/bin/env sh ./test.sh gen=$? -go test -local -integration $(glide novendor) -exit $gen && $? +echo 'go test github.com/cgrates/cgrates/apier/v1 -local' +go test github.com/cgrates/cgrates/apier/v1 -local +ap1=$? +echo 'go test github.com/cgrates/cgrates/apier/v2 -local' +go test github.com/cgrates/cgrates/apier/v2 -local +ap2=$? +echo 'go test github.com/cgrates/cgrates/engine -local -integration' +go test github.com/cgrates/cgrates/engine -local -integration +en=$? +echo 'go test github.com/cgrates/cgrates/cdrc -local' +go test github.com/cgrates/cgrates/cdrc -local +cdrc=$? +echo 'go test github.com/cgrates/cgrates/config -local' +go test github.com/cgrates/cgrates/config -local +cfg=$? +echo 'go test github.com/cgrates/cgrates/utils -local' +go test github.com/cgrates/cgrates/utils -local +utl=$? +echo 'go test github.com/cgrates/cgrates/general_tests -local -integration' +go test github.com/cgrates/cgrates/general_tests -local -integration +gnr=$? +echo 'go test github.com/cgrates/cgrates/agents -integration' +go test github.com/cgrates/cgrates/agents -integration +agts=$? +echo 'go test github.com/cgrates/cgrates/sessionmanager -integration' +go test github.com/cgrates/cgrates/sessionmanager -integration +smg=$? + +exit $gen && $ap1 && $ap2 && $en && $cdrc && $cfg && $utl && $gnr && $agts && $smg