From 5dfd5b82c251918d593d57349d7bb4eb866de532 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Wed, 20 Nov 2013 19:03:26 +0100 Subject: build-system/python: Add #:test-target parameter. * guix/build-system/python.scm (python-build): Add #:test-target parameter. Reported by Eric Bavier . --- guix/build-system/python.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guix/build-system/python.scm b/guix/build-system/python.scm index cf7ca7d3e1..c5a2e86316 100644 --- a/guix/build-system/python.scm +++ b/guix/build-system/python.scm @@ -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 -- cgit v1.2.3