From e9cd6fdbea563a658b493e18c5b6f77a867f09f5 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 29 Jul 2025 13:27:01 +0100 Subject: [PATCH] gnu: python-html5tagger: Do not try to run tests. * gnu/packages/python-web.scm (python-html5tagger) [arguments] : No tests in PyPI or Git, visually disable to prevent build fail. Change-Id: I2709805d23858b33e6a3e6528b764708d59796ab --- gnu/packages/python-web.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 9de5bf94422..f483be63814 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -3372,6 +3372,8 @@ C, yielding parse times that can be a thirtieth of the html5lib parse times.") (base32 "1acd1a4f66gi4plqnsml7cf33qp83mxsnmnqpdwkpj7597xkvyl4")))) (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;no tests in PyPI or Git (native-inputs (list python-setuptools python-setuptools-scm python-wheel)) (home-page "https://github.com/sanic-org/html5tagger")