about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ansible-lint
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2021-04-26 18:34:35 +0200
committerDomen Kožar <domen@dev.si>2021-04-26 21:46:14 +0200
commit0e3b57f6f56afa029cfe08b789e67bc27ac0887d (patch)
tree705f7f2119152afe7d38f78344d4f759d63f447d /pkgs/development/python-modules/ansible-lint
parent47d3e955fc40c045c3aafee19a9bd82d3d221abe (diff)
ansible-lint: disable tests on darwin
Diffstat (limited to 'pkgs/development/python-modules/ansible-lint')
-rw-r--r--pkgs/development/python-modules/ansible-lint/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/ansible-lint/default.nix b/pkgs/development/python-modules/ansible-lint/default.nix
index e404edddbcf3f..8388cd33e084d 100644
--- a/pkgs/development/python-modules/ansible-lint/default.nix
+++ b/pkgs/development/python-modules/ansible-lint/default.nix
@@ -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; {