1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-05 15:22:36 +03:00

python3Packages.commoncode: disable test_searchable_paths on darwin

This commit is contained in:
Robert Scott 2021-11-07 16:34:01 +00:00
parent c9acf4782f
commit cfb91f812b

View file

@ -1,4 +1,5 @@
{ lib { lib
, stdenv
, attrs , attrs
, beautifulsoup4 , beautifulsoup4
, buildPythonPackage , buildPythonPackage
@ -48,6 +49,11 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
pytest-xdist pytest-xdist
]; ];
disabledTests = lib.optionals stdenv.isDarwin [
# expected result is tailored towards the quirks of upstream's
# CI environment on darwin
"test_searchable_paths"
];
pythonImportsCheck = [ pythonImportsCheck = [
"commoncode" "commoncode"