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,16 +984,18 @@ standard library.")
"0f8c31v5r2kgjixvy267n0nhc4xsy65g3n9lz1i1377z5pn5ydjg")))) "0f8c31v5r2kgjixvy267n0nhc4xsy65g3n9lz1i1377z5pn5ydjg"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:phases (list
(modify-phases %standard-phases #:phases
#~(modify-phases %standard-phases
(add-before 'build 'pretend-version (add-before 'build 'pretend-version
;; The version string is usually derived via setuptools-scm, but ;; The version string is usually derived via setuptools-scm, but
;; without the git metadata available, the version string is set to ;; without the git metadata available, the version string is set to
;; '0.0.0'. ;; '0.0.0'.
(lambda _ (lambda _
(setenv "SETUPTOOLS_SCM_PRETEND_VERSION" ,version))) (setenv "SETUPTOOLS_SCM_PRETEND_VERSION"
#$(package-version this-package))))
(replace 'check (replace 'check
(lambda* (#:key (tests? #t) #:allow-other-keys) (lambda* (#:key tests? #:allow-other-keys)
(setenv "TERM" "dumb") ;attempt disabling markup tests (setenv "TERM" "dumb") ;attempt disabling markup tests
(if tests? (if tests?
(invoke "pytest" "-vv" "-k" (invoke "pytest" "-vv" "-k"
@ -1013,8 +1015,8 @@ standard library.")
python-py python-py
python-tomli)) python-tomli))
(native-inputs (native-inputs
(list ;; Tests need the "regular" bash since 'bash-final' lacks `compgen`. ;; Tests need the "regular" bash since 'bash-final' lacks `compgen`.
bash (list bash
python-hypothesis python-hypothesis
python-nose python-nose
python-pytest-bootstrap python-pytest-bootstrap