pyproject.toml
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 05 Apr 2022 04:45:48 +0200
changeset 49199 575f3dedb69a
parent 48004 58fe6d127a01
permissions -rw-r--r--
auto-upgrade: add a test case where the repository is already locked This show the current behavior when the repository to auto-upgrade is already locked. The current behavior is to abort, which is probably not great. Now that we have a proper test, we can think about the behavior we wants in a later tests. Differential Revision: https://phab.mercurial-scm.org/D12618

[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