From 75715000db1a957b5b7c7e22fb93fdf64344bd3e Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 25 Oct 2015 08:48:41 +0100 Subject: [PATCH] python pyramid: Disable tests for Python 3.5 I am not sure whether pyramid on Python 3.5 should work already. Therefore, disable the tests for Python 3.5 instead of disabling. --- pkgs/top-level/python-packages.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1a53f3577f2..f47c1e12981 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4712,6 +4712,11 @@ let maintainers = with maintainers; [ garbas iElectric ]; platforms = platforms.all; }; + + # Failing tests + # https://github.com/Pylons/pyramid/issues/1899 + doCheck = !isPy35; + };