소스 검색

Run isort with two jobs to speed it up.
Skip files that cause a bug in isort as a workaround.

Omer Katz 7 년 전
부모
커밋
a9a92c45ba
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      tox.ini

+ 4 - 0
tox.ini

@@ -87,4 +87,8 @@ commands =
     pydocstyle {toxinidir}/celery
 
 [testenv:isort-check]
+<<<<<<< HEAD
 commands = isort --project celery --diff --order-by-type -rc -c {toxinidir}/celery {toxinidir}/t
+=======
+commands = isort -j2 --diff --skip celery/utils/deprecated.py --project celery --order-by-type -rc -c {toxinidir}/celery {toxinidir}/t
+>>>>>>> Run isort with two jobs to speed it up.