diff options
| author | Jeremy Parker <jeremyp@booktopia.com.au> | 2023-07-15 12:47:05 +1000 |
|---|---|---|
| committer | Jeremy Parker <jeremyp@booktopia.com.au> | 2023-07-15 12:48:24 +1000 |
| commit | bbd16e798cdb7bb1bfdbae1c293f688813e19de8 (patch) | |
| tree | 5b0a8072e0972cbabc0917b9db299547b34ad194 /pkgs/development/python-modules | |
| parent | 0c8447e186764f0836a151e28202d9a11b993ca7 (diff) | |
python3Packages.dissect-target: disable failing tests
Diffstat (limited to 'pkgs/development/python-modules')
| -rw-r--r-- | pkgs/development/python-modules/dissect-target/default.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/dissect-target/default.nix b/pkgs/development/python-modules/dissect-target/default.nix index 3440c2449dcc..1a5bc7756f86 100644 --- a/pkgs/development/python-modules/dissect-target/default.nix +++ b/pkgs/development/python-modules/dissect-target/default.nix @@ -1,4 +1,5 @@ { lib +, stdenv , asn1crypto , buildPythonPackage , defusedxml @@ -109,7 +110,11 @@ buildPythonPackage rec { "test_tar_sensitive_drive_letter" # Tests compare dates and times "yum" - ]; + # Filesystem access, windows defender tests + "test_defender_quarantine_recovery" + ] ++ + # test is broken on Darwin + lib.optional stdenv.hostPlatform.isDarwin "test_fs_attrs_no_os_listxattr"; disabledTestPaths = [ # Tests are using Windows paths |
