pyproject.toml
author Matt Harbison <matt_harbison@yahoo.com>
Wed, 28 Sep 2022 11:27:59 -0400
branchstable
changeset 49421 08c3ecd899ae
parent 47881 58fe6d127a01
permissions -rw-r--r--
tests: migrate the pytype test to a shell script for easier CI processing There have been recent hangs and timeout, but it's hard to debug because the *.t test redirects output to a file and only prints it if `pytype` actually exits. This shell script can be run directly by CI, and will allow more flexibility to try to cache and restore type stubs for further speed increases.

[build-system]
requires = ["setuptools", "wheel"]

[tool.black]
line-length = 80
exclude = '''
build/
| wheelhouse/
| dist/
| packages/
| \.hg/
| \.mypy_cache/
| \.venv/
| mercurial/thirdparty/
'''
skip-string-normalization = true
quiet = true