mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
pass.audit: Disable tests on darwin
This commit is contained in:
parent
80a25eaa4a
commit
a1d83d01f2
1 changed files with 2 additions and 1 deletions
|
@ -30,7 +30,8 @@ in stdenv.mkDerivation rec {
|
|||
buildInputs = [ pythonEnv ];
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
doCheck = true;
|
||||
# Tests freeze on darwin with: pass-audit-1.1 (checkPhase): EOFError
|
||||
doCheck = !stdenv.isDarwin;
|
||||
checkInputs = [ pythonPackages.green pass gnupg ];
|
||||
checkPhase = ''
|
||||
${pythonEnv}/bin/python3 setup.py green -q
|
||||
|
|
Loading…
Reference in a new issue