gnu: python-pytest: Use G-expression.

* gnu/packages/check.scm (python-pytest)[arguments]: Use gexp.  While at it,
refer to THIS-PACKAGE instead of the version field.
This commit is contained in:
Marius Bakke 2022-08-15 21:39:25 +02:00
parent 65302a7045
commit 5f40f663f4
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -984,27 +984,29 @@ (define-public python-pytest
"0f8c31v5r2kgjixvy267n0nhc4xsy65g3n9lz1i1377z5pn5ydjg"))))
(build-system python-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'build 'pretend-version
;; The version string is usually derived via setuptools-scm, but
;; without the git metadata available, the version string is set to
;; '0.0.0'.
(lambda _
(setenv "SETUPTOOLS_SCM_PRETEND_VERSION" ,version)))
(replace 'check
(lambda* (#:key (tests? #t) #:allow-other-keys)
(setenv "TERM" "dumb") ;attempt disabling markup tests
(if tests?
(invoke "pytest" "-vv" "-k"
(string-append
;; This test involves the /usr directory, and fails.
" not test_argcomplete"
;; These test do not honor the isatty detection and
;; fail.
" and not test_code_highlight"
" and not test_color_yes"))
(format #t "test suite not run~%")))))))
(list
#:phases
#~(modify-phases %standard-phases
(add-before 'build 'pretend-version
;; The version string is usually derived via setuptools-scm, but
;; without the git metadata available, the version string is set to
;; '0.0.0'.
(lambda _
(setenv "SETUPTOOLS_SCM_PRETEND_VERSION"
#$(package-version this-package))))
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(setenv "TERM" "dumb") ;attempt disabling markup tests
(if tests?
(invoke "pytest" "-vv" "-k"
(string-append
;; This test involves the /usr directory, and fails.
" not test_argcomplete"
;; These test do not honor the isatty detection and
;; fail.
" and not test_code_highlight"
" and not test_color_yes"))
(format #t "test suite not run~%")))))))
(propagated-inputs
(list python-attrs-bootstrap
python-iniconfig
@ -1013,8 +1015,8 @@ (define-public python-pytest
python-py
python-tomli))
(native-inputs
(list ;; Tests need the "regular" bash since 'bash-final' lacks `compgen`.
bash
;; Tests need the "regular" bash since 'bash-final' lacks `compgen`.
(list bash
python-hypothesis
python-nose
python-pytest-bootstrap