diff options
author | Andreas Enge <andreas@enge.fr> | 2016-07-27 16:05:36 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2016-07-27 18:24:12 +0200 |
commit | 8b732bf6d93ad2cb529c3c5f886efe2625c5fb72 (patch) | |
tree | e936478549260386d1503aa9d28add528af0b51a | |
parent | 0072b3d3f243614975a8691c8a0b968597ead233 (diff) | |
download | guix-8b732bf6d93ad2cb529c3c5f886efe2625c5fb72.tar guix-8b732bf6d93ad2cb529c3c5f886efe2625c5fb72.tar.gz |
gnu: python-2.7: Disable test failing on mips64el-linux.
* gnu/packages/python.scm (python-2.7)[source]: In a snippet, remove
an additional test that fails on mips64el-linux.
-rw-r--r-- | gnu/packages/python.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index a5260f2bff..14f29f0784 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -125,7 +125,9 @@ "Lib/test/test_import.py" "Lib/test/test_shutil.py" "Lib/test/test_socket.py" - "Lib/test/test_subprocess.py")) + "Lib/test/test_subprocess.py" + ;; The following test apparently fails only on mips64el. + "Lib/test/test_ctypes.py")) #t)))) (outputs '("out" "tk")) ;tkinter; adds 50 MiB to the closure |