ansible-lint: disable tests on darwin

This commit is contained in:
Domen Kožar 2021-04-26 18:34:35 +02:00
parent 47d3e955fc
commit 0e3b57f6f5
No known key found for this signature in database
GPG key ID: C2FFBCAFD2C24246

View file

@ -1,4 +1,5 @@
{ lib
, stdenv
, fetchPypi
, buildPythonPackage
, isPy27
@ -63,6 +64,9 @@ buildPythonPackage rec {
"test_role_handler_positive"
];
# fails to run tests due to issues with temporary directory
doCheck = !stdenv.isDarwin;
makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ ansible ]}" ];
meta = with lib; {