details: https://code.tryton.org/relatorio/commit/afaa298d3241
branch: default
user: Cédric Krier <[email protected]>
date: Sun Mar 29 08:48:14 2026 +0200
description:
Make doc building really quiet and isolation optional
diffstat:
doc/conf.py | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diffs (14 lines):
diff -r 1ea5567191e2 -r afaa298d3241 doc/conf.py
--- a/doc/conf.py Fri Mar 27 23:58:36 2026 +0100
+++ b/doc/conf.py Sun Mar 29 08:48:14 2026 +0200
@@ -12,7 +12,9 @@
info = dict()
- metadata_cmd = 'python -m build --quiet --metadata'
+ metadata_cmd = 'python -m build -qq --metadata'
+ if os.environ.get('DOC_NO_ISOLATION'):
+ metadata_cmd += ' --no-isolation'
metadata = subprocess.check_output(
metadata_cmd, shell=True, encoding='utf-8', cwd=module_dir).strip()
metadata = json.loads(metadata)