From 751d9c606481fb07f9817d9753e5f166d8fd6b05 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Fri, 15 Sep 2023 12:34:02 -0400 Subject: [PATCH] test: delete smoke test The smoke test being deleted is for an autogenerated client and is handwritten. googleapis/gapic-generator-python#1772 has been filed as a feature request to add smoke tests to all GAPICs as autogenerated code. --- .../v1/test_system_cluster_controller_v1.py | 34 ------------------- 1 file changed, 34 deletions(-) delete mode 100644 tests/system/gapic/v1/test_system_cluster_controller_v1.py diff --git a/tests/system/gapic/v1/test_system_cluster_controller_v1.py b/tests/system/gapic/v1/test_system_cluster_controller_v1.py deleted file mode 100644 index 540d82f0..00000000 --- a/tests/system/gapic/v1/test_system_cluster_controller_v1.py +++ /dev/null @@ -1,34 +0,0 @@ -# -*- coding: utf-8 -*- -# -# Copyright 2020 Google LLC -# -# Licensed 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 -# -# https://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. - -import os - -import pytest - -from google.cloud import dataproc_v1 - - -@pytest.mark.parametrize("transport", ["grpc", "rest"]) -class TestSystemClusterController(object): - def test_list_clusters(self, transport): - project_id = os.environ["PROJECT_ID"] - - client = dataproc_v1.ClusterControllerClient(transport=transport) - project_id_2 = project_id - region = "global" - response = client.list_clusters( - request={"project_id": project_id_2, "region": region} - )