Skip to content

Commit 3e5c353

Browse files
Merge pull request #9240 from ThomasWaldmann/fix-b20
Fix b20
2 parents 160f84d + ed6e5db commit 3e5c353

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ dependencies = [
4444
llfuse = ["llfuse >= 1.3.8"] # fuse 2, low-level
4545
pyfuse3 = ["pyfuse3 >= 3.1.1"] # fuse 3, low-level, async
4646
mfusepy = ["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"]
4849
nofuse = []
4950
s3 = ["borgstore[s3] ~= 0.3.0"]
5051
sftp = ["borgstore[sftp] ~= 0.3.0"]

src/borg/testsuite/archiver/extract_cmd_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)