pythonPackages.virtualenv: disable tests failing on python2

They try to find the `python3` executable.
This commit is contained in:
Robert Schütz 2021-03-02 10:29:06 +01:00 committed by Frederik Rietdijk
parent 69f8105930
commit af1a9c5678

View file

@ -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" ];