summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2014-09-26 14:58:37 +0200
committerDomen Kožar <domen@dev.si>2014-09-26 18:12:49 +0200
commit4fa05bdc6fbb9d087fce1b32c2e422f2c5391e8e (patch)
tree2cbbb9439e6f1096cd590775762364a914b60357 /pkgs/development
parent3aefa63c75d28a016ee03ae7adc1e5e8d1576e76 (diff)
downloadnixlib-4fa05bdc6fbb9d087fce1b32c2e422f2c5391e8e.tar
nixlib-4fa05bdc6fbb9d087fce1b32c2e422f2c5391e8e.tar.gz
nixlib-4fa05bdc6fbb9d087fce1b32c2e422f2c5391e8e.tar.bz2
nixlib-4fa05bdc6fbb9d087fce1b32c2e422f2c5391e8e.tar.lz
nixlib-4fa05bdc6fbb9d087fce1b32c2e422f2c5391e8e.tar.xz
nixlib-4fa05bdc6fbb9d087fce1b32c2e422f2c5391e8e.tar.zst
nixlib-4fa05bdc6fbb9d087fce1b32c2e422f2c5391e8e.zip
pypy: disable test_urllib2net and test_urllibnet
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/interpreters/pypy/2.4/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/pypy/2.4/default.nix b/pkgs/development/interpreters/pypy/2.4/default.nix
index 4f4b8869a40c..8f9647c21342 100644
--- a/pkgs/development/interpreters/pypy/2.4/default.nix
+++ b/pkgs/development/interpreters/pypy/2.4/default.nix
@@ -70,7 +70,8 @@ let
        # disable sqlite3 due to https://bugs.pypy.org/issue1740
        # disable test_multiprocessing due to transient errors
        # disable test_os because test_urandom_failure fails
-      ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -k 'not (test_sqlite or test_socket or test_os or test_shutil or test_mhlib or test_multiprocessing)' lib-python
+       # disable test_urllib2net and test_urllibnet because it requires networking (example.com)
+      ./pypy-c ./pypy/test_all.py --pypy=./pypy-c -k 'not (test_sqlite or test_urllib2net or test_urllibnet or test_socket or test_os or test_shutil or test_mhlib or test_multiprocessing)' lib-python
     '';
 
     installPhase = ''