Merge pull request #145765 from risicle/ris-python-build-darwin-fix

python3Packages.build: skip test failing on darwin
This commit is contained in:
Jörg Thalheim 2021-11-13 22:59:54 +00:00 committed by GitHub
commit 2788c3b693
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, filelock
@ -56,6 +57,9 @@ buildPythonPackage rec {
"test_default_pip_is_never_too_old"
"test_build"
"test_init"
] ++ lib.optionals stdenv.isDarwin [
# expects Apple's python and its quirks
"test_can_get_venv_paths_with_conflicting_default_scheme"
];
pythonImportsCheck = [ "build" ];