Another try at passing the "--threads" flag to mypy_primer.

This commit is contained in:
Eric Traut 2024-07-17 12:38:32 -07:00
parent 045753f275
commit 1572f63ac0
2 changed files with 2 additions and 2 deletions

View File

@ -66,13 +66,13 @@ jobs:
# fail action if exit code isn't zero or one
(
mypy_primer \
--pyright_cmd "{pyright} --threads" \
--repo pyright_to_test \
--type-checker pyright \
--new $GITHUB_SHA --old base_commit \
--num-shards 8 --shard-index ${{ matrix.shard-index }} \
--debug \
--output concise \
--additional-flags [--threads] \
| tee diff_${{ matrix.shard-index }}.txt
) || [ $? -eq 1 ]
- name: Upload mypy_primer diff

View File

@ -51,12 +51,12 @@ jobs:
# fail action if exit code isn't zero or one
(
mypy_primer \
--pyright_cmd "{pyright} --threads" \
--repo pyright_to_test \
--type-checker pyright \
--new $GITHUB_SHA \
--debug \
--output concise \
--additional-flags [--threads] \
| tee diff.txt
) || [ $? -eq 1 ]
- name: Upload mypy_primer diff