mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
parent
a33773182e
commit
bba6cf4296
2 changed files with 3 additions and 6 deletions
|
|
@ -159,8 +159,7 @@ def xargs(
|
||||||
)
|
)
|
||||||
|
|
||||||
threads = min(len(partitions), target_concurrency)
|
threads = min(len(partitions), target_concurrency)
|
||||||
# https://github.com/python/mypy/issues/11852
|
with _thread_mapper(threads) as thread_map:
|
||||||
with _thread_mapper(threads) as thread_map: # type: ignore
|
|
||||||
results = thread_map(run_cmd_partition, partitions)
|
results = thread_map(run_cmd_partition, partitions)
|
||||||
|
|
||||||
for proc_retcode, proc_out, _ in results:
|
for proc_retcode, proc_out, _ in results:
|
||||||
|
|
|
||||||
|
|
@ -166,15 +166,13 @@ def test_xargs_concurrency():
|
||||||
|
|
||||||
|
|
||||||
def test_thread_mapper_concurrency_uses_threadpoolexecutor_map():
|
def test_thread_mapper_concurrency_uses_threadpoolexecutor_map():
|
||||||
# https://github.com/python/mypy/issues/11852
|
with xargs._thread_mapper(10) as thread_map:
|
||||||
with xargs._thread_mapper(10) as thread_map: # type: ignore
|
|
||||||
_self = thread_map.__self__ # type: ignore
|
_self = thread_map.__self__ # type: ignore
|
||||||
assert isinstance(_self, concurrent.futures.ThreadPoolExecutor)
|
assert isinstance(_self, concurrent.futures.ThreadPoolExecutor)
|
||||||
|
|
||||||
|
|
||||||
def test_thread_mapper_concurrency_uses_regular_map():
|
def test_thread_mapper_concurrency_uses_regular_map():
|
||||||
# https://github.com/python/mypy/issues/11852
|
with xargs._thread_mapper(1) as thread_map:
|
||||||
with xargs._thread_mapper(1) as thread_map: # type: ignore
|
|
||||||
assert thread_map is map
|
assert thread_map is map
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue