mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 10:06:24 +05:00
31 lines
856 B
Bash
Executable File
31 lines
856 B
Bash
Executable File
#! /usr/bin/env sh
|
|
./build.sh
|
|
./test.sh
|
|
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'
|
|
go test github.com/cgrates/cgrates/engine -local
|
|
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'
|
|
echo 'go test github.com/cgrates/cgrates/general_tests -local'
|
|
go test github.com/cgrates/cgrates/general_tests -local
|
|
gnr=$?
|
|
|
|
|
|
|
|
|
|
|
|
|
|
exit $gen && $ap1 && $ap2 && $en && $cdrc && $cfg && $gnr
|