all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Cyril Roelandt <tipecaml@gmail.com>
To: bug-guix@gnu.org
Subject: [PATCH 1/3] python-build-system: add a check phase.
Date: Thu, 23 May 2013 04:08:27 +0200	[thread overview]
Message-ID: <1369274909-7297-2-git-send-email-tipecaml@gmail.com> (raw)
In-Reply-To: <1369274909-7297-1-git-send-email-tipecaml@gmail.com>

* guix/build/python-build-system.scm: new function.
---
 guix/build/python-build-system.scm |   16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/guix/build/python-build-system.scm b/guix/build/python-build-system.scm
index b892c87..8429979 100644
--- a/guix/build/python-build-system.scm
+++ b/guix/build/python-build-system.scm
@@ -45,6 +45,14 @@
           (zero? (apply system* "python" args)))
         (error "no setup.py found"))))
 
+(define* (check #:key outputs #:allow-other-keys)
+  "Run the test suite of a given Python package."
+  (if (file-exists? "setup.py")
+      (let ((args `("setup.py" "check")))
+        (format #t "running 'python' with arguments ~s~%" args)
+        (zero? (apply system* "python" args)))
+      (error "no setup.py found")))
+
 (define* (wrap #:key outputs python-version #:allow-other-keys)
   (define (list-of-files dir)
     (map (cut string-append dir "/" <>)
@@ -78,10 +86,12 @@
   (alist-cons-after
    'install 'wrap
    wrap
-   (alist-replace 'install install
-                  (alist-delete 'configure
+   (alist-replace
+    'check check
+    (alist-replace 'install install
+                   (alist-delete 'configure
                                 (alist-delete 'build
-                                              gnu:%standard-phases)))))
+                                              gnu:%standard-phases))))))
 
 (define* (python-build #:key inputs (phases %standard-phases)
                        #:allow-other-keys #:rest args)
-- 
1.7.10.4

  reply	other threads:[~2013-05-23  2:16 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-23  2:08 [PATCH 0/3] Add babel Cyril Roelandt
2013-05-23  2:08 ` Cyril Roelandt [this message]
2013-05-23 12:05   ` [PATCH 1/3] python-build-system: add a check phase Ludovic Courtès
2013-05-23  2:08 ` [PATCH 2/3] gnu: Add pytz Cyril Roelandt
2013-05-23 12:07   ` Ludovic Courtès
2013-05-25 20:31     ` Cyril Roelandt
2013-05-23 12:08   ` Ludovic Courtès
2013-05-28 21:54     ` [PATCH v2] " Cyril Roelandt
2013-05-28 22:21       ` Ludovic Courtès
2013-05-23  2:08 ` [PATCH 3/3] gnu: Add Babel Cyril Roelandt
2013-05-23 12:19   ` Ludovic Courtès
2013-05-28 23:41     ` Cyril Roelandt
2013-05-29 21:45       ` Ludovic Courtès
2013-05-31 23:55         ` Cyril Roelandt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1369274909-7297-2-git-send-email-tipecaml@gmail.com \
    --to=tipecaml@gmail.com \
    --cc=bug-guix@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.