You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# # If lint or test fails for a service, we skip it and continue to the next one
119
+
# make lint skip-non-generated-files=true service=$service || {
120
+
# echo "! Linting failed for $service. THE UPDATE OF THIS SERVICE WILL BE SKIPPED."
121
+
# continue
122
+
# }
123
+
# go test ./services/${service} -timeout=5m -cover -count=1 || { # Cannot use "make test" as it uses .git to determine root directory, and we are in a temporary directory
124
+
# echo "! Testing failed for $service. THE UPDATE OF THIS SERVICE WILL BE SKIPPED."
125
+
# continue
126
+
# }
108
127
109
-
# If lint or test fails for a service, we skip it and continue to the next one
110
-
make lint skip-non-generated-files=true service=$service|| {
111
-
echo"! Linting failed for $service"
112
-
continue
113
-
}
114
-
make test skip-non-generated-files=true service=$service|| {
0 commit comments