diff options
author | Mark H Weaver <mhw@netris.org> | 2016-03-17 14:43:18 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2016-08-18 03:29:18 -0400 |
commit | 4ace64dc07bed9df10895e51939e85c37fd3599a (patch) | |
tree | b5840aab4caa794ac4d75fbc9aa243c76b1088fd | |
parent | 377d50d0c6f193c13b7a5becff43c4d056e18e5c (diff) | |
download | guix-4ace64dc07bed9df10895e51939e85c37fd3599a.tar.gz |
TEMPORARY_HACK: gnu: python-urwid: Disable tests on MIPS.
* gnu/packages/python.scm (python-urwid)[arguments]: Disable tests on MIPS.
-rw-r--r-- | gnu/packages/python.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index d7886d9399..06a5049d0d 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org> ;;; Copyright © 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2013, 2014, 2015, 2016 Andreas Enge <andreas@enge.fr> -;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org> +;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org> ;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2014, 2015 Federico Beffa <beffa@fbengineering.ch> ;;; Copyright © 2015 Omar Radwan <toxemicsquire4@gmail.com> @@ -4497,7 +4497,8 @@ and written in Python.") "18mb0yy94sjc434rd61m2sfnw27sa0nyrszpj5a9r9zh7fnlzw19")))) (build-system python-build-system) (arguments - `(#:phases + `(#:tests? ,(not (string-prefix? "mips" (%current-system))) + #:phases (modify-phases %standard-phases ;; Disable failing test. Bug filed upstream: ;; https://github.com/wardi/urwid/issues/164 |