pythonPackages.virtualenv: disable tests failing on python2
They try to find the `python3` executable.
This commit is contained in:
parent
69f8105930
commit
af1a9c5678
|
@ -75,6 +75,9 @@ buildPythonPackage rec {
|
||||||
disabledTests = [
|
disabledTests = [
|
||||||
"test_can_build_c_extensions"
|
"test_can_build_c_extensions"
|
||||||
"test_xonsh" # imports xonsh, which is not in pythonPackages
|
"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" ];
|
pythonImportsCheck = [ "virtualenv" ];
|
||||||
|
|
Loading…
Reference in New Issue