diff options
author | Marius Bakke <marius@gnu.org> | 2022-10-27 20:31:38 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-10-27 21:30:03 +0200 |
commit | e944734ef9afa1ac9b46579934482b7d909ed24e (patch) | |
tree | 3264c818aa7f37fb5ca3b9cd1b12687f464ffc6f /gnu/packages/fontutils.scm | |
parent | 6ef998d54e57c8969bc3db7888fb7d4939a6fa83 (diff) | |
download | guix-e944734ef9afa1ac9b46579934482b7d909ed24e.tar guix-e944734ef9afa1ac9b46579934482b7d909ed24e.tar.gz |
build-system/pyproject: Always run tests verbosely for supported backends.
* guix/build-system/pyproject.scm (pyproject-build): Default to '() instead of
#false for TEST-FLAGS.
* guix/build/pyproject-build-system.scm (check): Unconditionally enable
verbose test flags.
* doc/guix.texi (Build Systems): Document this change.
* gnu/packages/fontutils.scm (python-glyphslib)[arguments]: Remove verbosity
from #:test-flags.
* gnu/packages/pdf.scm (python-pydyf, weasyprint)[arguments]: Likewise.
* gnu/packages/python-web.scm (python-openapi-spec-validator)[arguments]: Likewise.
* gnu/packages/python-xyz.scm (python-path, python-tempora)[arguments]: Likewise.
Diffstat (limited to 'gnu/packages/fontutils.scm')
-rw-r--r-- | gnu/packages/fontutils.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index df3774e977..368aad49d6 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -598,8 +598,7 @@ process. FontParts is the successor of RoboFab.") (build-system pyproject-build-system) (arguments (list - #:test-flags #~'("-vv" - ;; These fail because the test data has not yet been + #:test-flags #~'(;; These fail because the test data has not yet been ;; updated for newer FontTools: ;; https://github.com/googlefonts/glyphsLib/issues/787 ;; Re-enable for versions > 6.0.7. |