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:
Ludovic Courtès 2013-11-20 19:03:26 +01:00
parent 8bf8d7c78f
commit 5dfd5b82c2

View File

@ -97,6 +97,7 @@ prepended to the name."
#:key #:key
(python (default-python)) (python (default-python))
(tests? #t) (tests? #t)
(test-target "test")
(configure-flags ''()) (configure-flags ''())
(phases '(@ (guix build python-build-system) (phases '(@ (guix build python-build-system)
%standard-phases)) %standard-phases))
@ -125,7 +126,7 @@ provides a 'setup.py' file as its build system."
source) source)
#:configure-flags ,configure-flags #:configure-flags ,configure-flags
#:system ,system #:system ,system
#:test-target "test" #:test-target ,test-target
#:tests? ,tests? #:tests? ,tests?
#:phases ,phases #:phases ,phases
#:outputs %outputs #:outputs %outputs