From 2985b2373f9c361443945226be6018e633197e27 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Fri, 15 Sep 2023 15:21:06 -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. --- tests/system/gapic/v2/test_system_tasks_v2.py | 27 ------------------- 1 file changed, 27 deletions(-) delete mode 100644 tests/system/gapic/v2/test_system_tasks_v2.py diff --git a/tests/system/gapic/v2/test_system_tasks_v2.py b/tests/system/gapic/v2/test_system_tasks_v2.py deleted file mode 100644 index def987f0..00000000 --- a/tests/system/gapic/v2/test_system_tasks_v2.py +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 2019 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 - -from google.cloud import tasks_v2 - - -class TestSystemTasks(object): - def test_list_queues(self): - client = tasks_v2.CloudTasksClient() - - # Setup Request - project_id = os.environ["PROJECT_ID"] - parent = f"projects/{project_id}/locations/us-central1" - client.list_queues(request={"parent": parent})