From af1a9c567891e82e82bc615a2d07dd98b32ac4f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 2 Mar 2021 10:29:06 +0100 Subject: [PATCH] pythonPackages.virtualenv: disable tests failing on python2 They try to find the `python3` executable. --- pkgs/development/python-modules/virtualenv/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/virtualenv/default.nix b/pkgs/development/python-modules/virtualenv/default.nix index 5d60f2bf39e8..ec22660830bd 100644 --- a/pkgs/development/python-modules/virtualenv/default.nix +++ b/pkgs/development/python-modules/virtualenv/default.nix @@ -75,6 +75,9 @@ buildPythonPackage rec { disabledTests = [ "test_can_build_c_extensions" "test_xonsh" # imports xonsh, which is not in pythonPackages + # tests search `python3`, fail on python2, pypy + "test_python_via_env_var" + "test_python_multi_value_prefer_newline_via_env_var" ]; pythonImportsCheck = [ "virtualenv" ];