pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 24 Nov 2022 10:34:34 +0100
branchstable
changeset 49656 c6f0bcb7bc57
parent 48004 58fe6d127a01
child 52003 d4b275587847
permissions -rw-r--r--
test: adjust test-push-race.t timeout's to overall test timeout The generic `tests/testlib/wait-on-file` mechanism scale its timeout with the value of `HGTEST_TIMEOUT`, the `delaypush.py` in `test-push-race.t` is not doing this, and we have been seeing more and more timeout from loaded CI worker lately. Adding this timeout scaling should help with that.

[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