Merge pull request #21248 from lidizheng/fix-runner

Use dedicated threads for synchronous runners
pull/18856/head
Lidi Zheng 5 years ago committed by GitHub
commit 0db9a7a4a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/python/grpcio_tests/commands.py

@ -95,7 +95,7 @@ class TestLite(setuptools.Command):
import tests
loader = tests.Loader()
loader.loadTestsFromNames(['tests'])
runner = tests.Runner()
runner = tests.Runner(dedicated_threads=True)
result = runner.run(loader.suite)
if not result.wasSuccessful():
sys.exit('Test failure')

Loading…
Cancel
Save