mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
python3Packages.fs: fix tests on darwin
Refactors to pytestCheckHook and removes unused nose dependency.
This commit is contained in:
parent
3d048b1bee
commit
66afda2857
@ -3,7 +3,6 @@
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, six
|
||||
, nose
|
||||
, appdirs
|
||||
, scandir
|
||||
, backports_os
|
||||
@ -15,7 +14,8 @@
|
||||
, mock
|
||||
, pythonAtLeast
|
||||
, isPy3k
|
||||
, pytest
|
||||
, pytestCheckHook
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -28,7 +28,7 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
buildInputs = [ glibcLocales ];
|
||||
checkInputs = [ nose pyftpdlib mock psutil pytest ];
|
||||
checkInputs = [ pyftpdlib mock psutil pytestCheckHook ];
|
||||
propagatedBuildInputs = [ six appdirs pytz ]
|
||||
++ lib.optionals (!isPy3k) [ backports_os ]
|
||||
++ lib.optionals (!pythonAtLeast "3.6") [ typing ]
|
||||
@ -37,10 +37,20 @@ buildPythonPackage rec {
|
||||
|
||||
LC_ALL="en_US.utf-8";
|
||||
|
||||
checkPhase = ''
|
||||
HOME=$(mktemp -d) pytest -k 'not user_data_repr' --ignore=tests/test_opener.py
|
||||
preCheck = ''
|
||||
HOME=$(mktemp -d)
|
||||
'';
|
||||
|
||||
pytestFlagsArray = [ "--ignore=tests/test_opener.py" ];
|
||||
|
||||
disabledTests = [
|
||||
"user_data_repr"
|
||||
] ++ lib.optionals (stdenv.isDarwin) [ # remove if https://github.com/PyFilesystem/pyfilesystem2/issues/430#issue-707878112 resolved
|
||||
"test_ftpfs"
|
||||
];
|
||||
|
||||
__darwinAllowLocalNetworking = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Filesystem abstraction";
|
||||
homepage = "https://github.com/PyFilesystem/pyfilesystem2";
|
||||
|
Loading…
Reference in New Issue
Block a user