1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 07:31:20 +00:00

pythonPackages.ansible-runner: skip failing test on Catalina (#80484)

Catalina replaced the director /home with a symbolic link to `/System/Volumes/Data/home` and this test is looking for `/home` explicitly.

I filed https://github.com/ansible/ansible-runner/issues/413 to get this fix upstream.
This commit is contained in:
Wael Nasreddine 2020-02-18 17:42:40 -10:00 committed by GitHub
parent 3adda62dc3
commit f84bc7264c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,6 +6,7 @@
, python-daemon
, pyyaml
, six
, stdenv
, ansible
, pytest
, mock
@ -30,8 +31,12 @@ buildPythonPackage rec {
six
];
# test_process_isolation_settings is currently broken on Darwin Catalina
# https://github.com/ansible/ansible-runner/issues/413
checkPhase = ''
HOME=$(mktemp -d) pytest --ignore test/unit/test_runner.py -k "not test_prepare"
HOME=$TMPDIR pytest \
--ignore test/unit/test_runner.py \
-k "not prepare ${lib.optionalString stdenv.isDarwin "and not process_isolation_settings"}"
'';
meta = with lib; {