mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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.
This commit is contained in:
parent
6ef998d54e
commit
e944734ef9
7 changed files with 17 additions and 15 deletions
|
@ -12753,7 +12753,7 @@ invoked on those path objects directly.")
|
|||
((#:tests? _ #f)
|
||||
(not (%current-target-system)))
|
||||
((#:test-flags flags #~'())
|
||||
#~(append (list "-vv" "-k"
|
||||
#~(append (list "-k"
|
||||
(string-append
|
||||
;; Do not test the myproject.toml build as it tries
|
||||
;; to pull dependencies from the Internet.
|
||||
|
@ -21366,7 +21366,7 @@ particularly convenient for use in tests.")
|
|||
(arguments
|
||||
;; Do not test the myproject.toml build as it tries to pull
|
||||
;; dependencies from the Internet.
|
||||
(list #:test-flags #~'("-vv" "-k" "not project")))
|
||||
(list #:test-flags #~'("-k" "not project")))
|
||||
(native-inputs
|
||||
(list python-freezegun
|
||||
python-pytest
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue