diff options
-rw-r--r-- | guix/build-system/python.scm | 3 |
1 files changed, 2 insertions, 1 deletions
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 |