Skip to content

Commit

Permalink
Skip tests for not lookback mode
Browse files Browse the repository at this point in the history
  • Loading branch information
damondouglas committed Sep 19, 2024
1 parent 4681666 commit 5ee1c71
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sdks/go/test/integration/primitives/pardo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ package primitives

import (
"github.com/apache/beam/sdks/v2/go/pkg/beam"
"github.com/apache/beam/sdks/v2/go/pkg/beam/options/jobopts"
"testing"

"github.com/apache/beam/sdks/v2/go/pkg/beam/testing/ptest"
Expand Down Expand Up @@ -50,6 +51,9 @@ func TestParDoPipelineOptions(t *testing.T) {

func TestParDoBundleFinalizer(t *testing.T) {
integration.CheckFilters(t)
if !jobopts.IsLoopback() {
t.Skip("Only Loopback mode is supported")
}
for _, tt := range []struct {
name string
pipelineFn func() *beam.Pipeline
Expand Down

0 comments on commit 5ee1c71

Please sign in to comment.