mirror of https://github.com/grpc/grpc.git
reducing number of tooling tests to one (#37848)
* updated tooling tests to run single test
Closes #37848
COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/37848 from sourabhsinghs:feature/python/tooling-tests 72199557e9
PiperOrigin-RevId: 695350627
pull/38093/head
parent
c367ab13c8
commit
dc9af5a027
2 changed files with 41 additions and 4 deletions
@ -0,0 +1,36 @@ |
||||
# Copyright 2024 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 logging |
||||
import unittest |
||||
|
||||
|
||||
class TestAllModulesInstalled(unittest.TestCase): |
||||
def test_import_all_modules(self): |
||||
import grpc_admin |
||||
import grpc_channelz |
||||
import grpc_csds |
||||
import grpc_csm_observability |
||||
import grpc_health |
||||
import grpc_observability |
||||
import grpc_reflection |
||||
import grpc_status |
||||
|
||||
# This test simply imports all the modules. |
||||
# If any module fails to import, the test will fail. |
||||
|
||||
|
||||
if __name__ == "__main__": |
||||
logging.basicConfig() |
||||
unittest.main(verbosity=3) |
Loading…
Reference in new issue