Skip to content

Commit bcb9865

Browse files
authored
fix: Fix test script on skip non generated files (#1039)
1 parent bf4898b commit bcb9865

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/test-go.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ test_service() {
3030

3131
echo ">> Testing services/${service}"
3232
if [ "${SKIP_NON_GENERATED_FILES}" = true ]; then
33-
go test ${SERVICES_PATH}/${service}/... ${GOTEST_ARGS} # All manually maintained files are in subfolders
33+
go test ${SERVICES_PATH}/${service} ${GOTEST_ARGS} # All manually maintained files are in subfolders
3434
else
3535
go test ${SERVICES_PATH}/${service}/... ${GOTEST_ARGS}
3636
fi

0 commit comments

Comments
 (0)