• Home
  • Raw
  • Download

Lines Matching +full:run +full:- +full:tests

7 #     http://www.apache.org/licenses/LICENSE-2.0
53 def run(self): member in GatherProto
70 def run(self): member in BuildPy
75 build_py.build_py.run(self)
79 """Command to run tests without fetching or building anything."""
81 description = "run tests without fetching or building anything."
91 def run(self): member in TestLite
92 import tests
94 loader = tests.Loader()
95 loader.loadTestsFromNames(["tests"])
96 runner = tests.Runner(dedicated_threads=True)
97 result = runner.run(loader.suite)
103 """Command to run tests for Python 3+ features.
105 This does not include asyncio tests, which are housed in a separate
109 description = "run tests for py3+ features"
118 def run(self): member in TestPy3Only
119 import tests
121 loader = tests.Loader()
123 runner = tests.Runner()
124 result = runner.run(loader.suite)
130 """Command to run aio tests without fetching or building anything."""
132 description = "run aio tests without fetching or building anything."
141 def run(self): member in TestAio
142 import tests
144 loader = tests.Loader()
147 # new thread for tests to run upon. New thread doesn't have event loop
149 runner = tests.Runner(dedicated_threads=False)
150 result = runner.run(loader.suite)
156 description = "run interop test client/server"
158 ("args=", None, "pass-thru arguments for the client/server"),
159 ("client", None, "flag indicating to run the client"),
160 ("server", None, "flag indicating to run the server"),
161 ("use-asyncio", None, "flag indicating to run the asyncio stack"),
176 def run(self): member in RunInterop
194 from tests.interop import server
202 from tests.interop import client
209 description = "run fork test client"
210 user_options = [("args=", "a", "pass-thru arguments for the client")]
219 def run(self): member in RunFork
222 from tests.fork import client