Turn off pre-commit's automatic parallelization for black (#675)

black internally uses multiprocessing for speed.  In pre-commit 1.13.0 this is automated by the framework itself however if both pre-commit and black are forking processes this is slower and hits race-conditions in `black`.
This commit is contained in:
Anthony Sottile 2019-01-18 12:52:56 -08:00 committed by Zsolt Dollenstein
parent 7546ed292c
commit bc7e5c949f

View File

@ -4,4 +4,5 @@
entry: black
language: python
language_version: python3
require_serial: true
types: [python]