This is an automated email from the ASF dual-hosted git repository. johncasey pushed a commit to branch release-2.45.0 in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/release-2.45.0 by this push: new b29e8f34710 delete file used in internal testing (#25342) b29e8f34710 is described below commit b29e8f34710a0259ab6db6c3892e5f909342b559 Author: Ritesh Ghorse <riteshgho...@gmail.com> AuthorDate: Mon Feb 6 12:46:36 2023 -0500 delete file used in internal testing (#25342) --- .../go/pkg/beam/core/runtime/xlangx/expand_test.go | 41 ---------------------- 1 file changed, 41 deletions(-) diff --git a/sdks/go/pkg/beam/core/runtime/xlangx/expand_test.go b/sdks/go/pkg/beam/core/runtime/xlangx/expand_test.go deleted file mode 100644 index f4949efc3f0..00000000000 --- a/sdks/go/pkg/beam/core/runtime/xlangx/expand_test.go +++ /dev/null @@ -1,41 +0,0 @@ -// Licensed to the Apache Software Foundation (ASF) under one or more -// contributor license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright ownership. -// The ASF licenses this file to You under the Apache License, Version 2.0 -// (the "License"); you may not use this file except in compliance with -// the License. You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package xlangx - -import ( - "strings" - "testing" - - "github.com/apache/beam/sdks/v2/go/pkg/beam/core" -) - -func TestStartAutomated(t *testing.T) { - // TODO: https://github.com/apache/beam/issues/25303 - t.Skipf("need a release SDK version to test auto python expansion service") - if strings.HasSuffix(core.SdkVersion, ".dev") { - t.Skipf("need a released SDK version to test auto python expansion service, got: %s", core.SdkVersion) - } - sp, addr, err := startPythonExpansionService("apache_beam.runners.portability.expansion_service_main", "") - if err != nil { - t.Fatal(err) - } - if addr == "" { - t.Fatal("no address") - } - if err := sp(); err != nil { - t.Fatal("error stoping service") - } -}