3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #230819 from fabaff/webdav4-fix

python310Packages.webdav4: disable failing tests
This commit is contained in:
Fabian Affolter 2023-05-09 18:40:13 +02:00 committed by GitHub
commit 53925dfedf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "skshetry";
repo = pname;
rev = "v${version}";
rev = "refs/tags/v${version}";
hash = "sha256-Le/gABaUxMmSW2SjgucsBKqjxOq1h9UCAWl5YyUsCPk=";
};
@ -76,6 +76,10 @@ buildPythonPackage rec {
"test_open"
"test_open_binary"
"test_close_connection_if_nothing_is_read"
# Assertion error due to comparing output
"test_cp_cli"
"test_mv_cli"
"test_sync_remote_to_local"
];
disabledTestPaths = [
@ -87,6 +91,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Library for interacting with WebDAV";
homepage = "https://skshetry.github.io/webdav4/";
changelog = "https://github.com/skshetry/webdav4/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};