build-system/python: Add #:test-target parameter.
* guix/build-system/python.scm (python-build): Add #:test-target parameter. Reported by Eric Bavier <ericbavier@gmail.com>.
This commit is contained in:
parent
8bf8d7c78f
commit
5dfd5b82c2
|
@ -97,6 +97,7 @@ prepended to the name."
|
|||
#:key
|
||||
(python (default-python))
|
||||
(tests? #t)
|
||||
(test-target "test")
|
||||
(configure-flags ''())
|
||||
(phases '(@ (guix build python-build-system)
|
||||
%standard-phases))
|
||||
|
@ -125,7 +126,7 @@ provides a 'setup.py' file as its build system."
|
|||
source)
|
||||
#:configure-flags ,configure-flags
|
||||
#:system ,system
|
||||
#:test-target "test"
|
||||
#:test-target ,test-target
|
||||
#:tests? ,tests?
|
||||
#:phases ,phases
|
||||
#:outputs %outputs
|
||||
|
|
Loading…
Reference in New Issue