3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #144993 from risicle/ris-commoncode-darwin-disable-searchable-paths-test

This commit is contained in:
Sandro 2021-11-07 18:12:36 +01:00 committed by GitHub
commit a2d3f0ccb7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,5 @@
{ lib
, stdenv
, attrs
, beautifulsoup4
, buildPythonPackage
@ -48,6 +49,11 @@ buildPythonPackage rec {
pytestCheckHook
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 = [
"commoncode"