about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2014-05-01 18:36:48 +0200
committerDomen Kožar <domen@dev.si>2014-05-01 18:38:06 +0200
commit1d2278f480d9235b19bcfeb6f948484ec2e4057b (patch)
tree5f757b6979fca6737645062b5171ee339435a1b2 /pkgs/development/interpreters
parent1a501134e8b4823bcd99f00c002f57cc2843967d (diff)
downloadnixlib-1d2278f480d9235b19bcfeb6f948484ec2e4057b.tar
nixlib-1d2278f480d9235b19bcfeb6f948484ec2e4057b.tar.gz
nixlib-1d2278f480d9235b19bcfeb6f948484ec2e4057b.tar.bz2
nixlib-1d2278f480d9235b19bcfeb6f948484ec2e4057b.tar.lz
nixlib-1d2278f480d9235b19bcfeb6f948484ec2e4057b.tar.xz
nixlib-1d2278f480d9235b19bcfeb6f948484ec2e4057b.tar.zst
nixlib-1d2278f480d9235b19bcfeb6f948484ec2e4057b.zip
pypy: disable sqlite3 tests (failing due to sqlite bump)
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/pypy/2.2/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/pypy/2.2/default.nix b/pkgs/development/interpreters/pypy/2.2/default.nix
index 2fee7bc74df7..427e06eca13d 100644
--- a/pkgs/development/interpreters/pypy/2.2/default.nix
+++ b/pkgs/development/interpreters/pypy/2.2/default.nix
@@ -59,7 +59,8 @@ let
        # disable socket because it has two actual network tests that fail
        # disable test_mhlib because it fails for unknown reason
        # disable test_multiprocessing due to transient errors
-      ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -k '-test_socket -test_shutil -test_mhlib -test_multiprocessing' lib-python
+       # disable sqlite3 due to https://bugs.pypy.org/issue1740
+      ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -k '-test_sqlite -test_socket -test_shutil -test_mhlib -test_multiprocessing' lib-python
     '';
 
     installPhase = ''