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
1 changed files with 2 additions and 1 deletions

View File

@ -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