aboutsummaryrefslogtreecommitdiff
path: root/tools/run_tests/xds_k8s_test_driver/tests/url_map/__main__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/run_tests/xds_k8s_test_driver/tests/url_map/__main__.py')
-rw-r--r--tools/run_tests/xds_k8s_test_driver/tests/url_map/__main__.py32
1 files changed, 0 insertions, 32 deletions
diff --git a/tools/run_tests/xds_k8s_test_driver/tests/url_map/__main__.py b/tools/run_tests/xds_k8s_test_driver/tests/url_map/__main__.py
deleted file mode 100644
index ff8c4855c2..0000000000
--- a/tools/run_tests/xds_k8s_test_driver/tests/url_map/__main__.py
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 2021 The gRPC Authors
-#
-# 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
-#
-# 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.
-
-import os
-
-from absl.testing import absltest
-
-from framework import xds_url_map_testcase # Needed for xDS flags
-
-_TEST_CASE_FOLDER = os.path.dirname(__file__)
-
-
-def load_tests(loader: absltest.TestLoader, unused_tests, unused_pattern):
- return loader.discover(
- _TEST_CASE_FOLDER,
- pattern="*" + xds_url_map_testcase.URL_MAP_TESTCASE_FILE_SUFFIX,
- )
-
-
-if __name__ == "__main__":
- absltest.main()