8000 Decrease Mypy concurrent process count by emmatyping · Pull Request #1618 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

Decrease Mypy concurrent process count #1618

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 20, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
CFF0
Diff view
Decrease Mypy concurrent process count
Mypy has issues with running its test suite with many processes
concurrently. This should reduce travis test failures, if not completely
resolve failures. See issue python/mypy#3543
  • Loading branch information
emmatyping committed Sep 20, 2017
commit ec77d99c10a3b38b8c316f7264f95544c182b0d0
2 changes: 1 addition & 1 deletion tests/mypy_selftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
shutil.copytree('stdlib', str(dirpath / 'mypy/typeshed/stdlib'))
shutil.copytree('third_party', str(dirpath / 'mypy/typeshed/third_party'))
try:
subprocess.run(['./runtests.py'], cwd=str(dirpath / 'mypy'), check=True)
subprocess.run(['./runtests.py', '-j12'], cwd=str(dirpath / 'mypy'), check=True)
except subprocess.CalledProcessError as e:
print('mypy tests failed', file=sys.stderr)
sys.exit(e.returncode)
Expand Down
0