From b0c44debac71e10b9e2cfd073ded42306ca20397 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 2 Dec 2018 23:35:07 +0100 Subject: [PATCH] python.pkgs.pylint: disable broken tests fixes https://github.com/NixOS/nixpkgs/issues/51394 --- pkgs/development/python-modules/pylint/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pylint/default.nix b/pkgs/development/python-modules/pylint/default.nix index 1ced9bdaa25b..67066c85f052 100644 --- a/pkgs/development/python-modules/pylint/default.nix +++ b/pkgs/development/python-modules/pylint/default.nix @@ -23,8 +23,8 @@ buildPythonPackage rec { checkPhase = '' pytest pylint/test -k "not ${lib.concatStringsSep " and not " ( - # Broken test - [ "test_good_comprehension_checks" ] ++ + # Broken tests + [ "member_checks_py37" "iterable_context_py36" ] ++ # Disable broken darwin tests lib.optionals stdenv.isDarwin [ "test_parallel_execution"