Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pkg/functions/client_int_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,9 @@ func Handle(res http.ResponseWriter, req *http.Request) {
// TestInt_Invoke_ServiceToService ensures that a Function can invoke another
// service via localhost service discovery api provided by the Dapr sidecar.
func TestInt_Invoke_ServiceToService(t *testing.T) {
t.Skip("TODO: dapr appears to be borked") // https://github.com/knative/func/issues/3210
if os.Getenv("FUNC_INT_ENABLE_DAPR_S2S") != "true" {
t.Skip("Dapr S2S test disabled; set FUNC_INT_ENABLE_DAPR_S2S=true to run")
}
resetEnv()
var (
verbose = true
Expand Down