File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
src/borg/testsuite/archiver Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,8 @@ dependencies = [
4444llfuse = [" llfuse >= 1.3.8" ] # fuse 2, low-level
4545pyfuse3 = [" pyfuse3 >= 3.1.1" ] # fuse 3, low-level, async
4646mfusepy = [" mfusepy >= 3.1.0, <4.0.0" ] # fuse 2+3, high-level
47- mfusepym = [" mfusepy @ git+https://github.com/mxmlnkn/mfusepy.git@master" ]
47+ # a pypi release of borgbackup can't contain a dependency on github!
48+ # mfusepym = ["mfusepy @ git+https://github.com/mxmlnkn/mfusepy.git@master"]
4849nofuse = []
4950s3 = [" borgstore[s3] ~= 0.3.0" ]
5051sftp = [" borgstore[sftp] ~= 0.3.0" ]
Original file line number Diff line number Diff line change @@ -565,19 +565,19 @@ def patched_setxattr_EACCES(*args, **kwargs):
565565 with patch .object (xattr , "setxattr" , patched_setxattr_E2BIG ):
566566 out = cmd (archiver , "extract" , "test" , exit_code = EXIT_WARNING )
567567 assert "too big for this filesystem" in out
568- assert "when setting extended attribute user.attribute" in out
568+ assert "When setting extended attribute user.attribute" in out
569569 os .remove (input_abspath )
570570
571571 with patch .object (xattr , "setxattr" , patched_setxattr_ENOTSUP ):
572572 out = cmd (archiver , "extract" , "test" , exit_code = EXIT_WARNING )
573573 assert "ENOTSUP" in out
574- assert "when setting extended attribute user.attribute" in out
574+ assert "When setting extended attribute user.attribute" in out
575575 os .remove (input_abspath )
576576
577577 with patch .object (xattr , "setxattr" , patched_setxattr_EACCES ):
578578 out = cmd (archiver , "extract" , "test" , exit_code = EXIT_WARNING )
579579 assert "EACCES" in out
580- assert "when setting extended attribute user.attribute" in out
580+ assert "When setting extended attribute user.attribute" in out
581581 assert os .path .isfile (input_abspath )
582582
583583
You can’t perform that action at this time.
0 commit comments