Add Fedora schema loading fix to NEWS (#703).
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Dan Helfman 2023-06-03 22:07:24 -07:00
parent b3f70434df
commit 1a5b3c9e4e
2 changed files with 3 additions and 2 deletions

1
NEWS
View File

@ -3,6 +3,7 @@
or monitoring), so not even errors are shown.
* #688: Tweak archive check probing logic to use the newest timestamp found when multiple exist.
* #659: Add Borg 2 date-based matching flags to various actions for archive selection.
* #703: Fix an error when loading the configuration schema on Fedora Linux.
* #704: Fix "check" action error when repository and archive checks are configured but the archive
check gets skipped due to the configured frequency.
* #706: Fix "--archive latest" on "list" and "info" actions that only worked on the first of

View File

@ -11,7 +11,7 @@ from borgmatic.config import validate as module
def test_schema_filename_finds_schema_path():
schema_path = '/var/borgmatic/config/schema.yaml'
flexmock(os.path).should_receive('dirname').and_return("/var/borgmatic/config")
flexmock(os.path).should_receive('dirname').and_return('/var/borgmatic/config')
builtins = flexmock(sys.modules['builtins'])
builtins.should_receive('open').with_args(schema_path).and_return(StringIO())
assert module.schema_filename() == schema_path
@ -20,7 +20,7 @@ def test_schema_filename_finds_schema_path():
def test_schema_filename_raises_filenotfounderror():
schema_path = '/var/borgmatic/config/schema.yaml'
flexmock(os.path).should_receive('dirname').and_return("/var/borgmatic/config")
flexmock(os.path).should_receive('dirname').and_return('/var/borgmatic/config')
builtins = flexmock(sys.modules['builtins'])
builtins.should_receive('open').with_args(schema_path).and_raise(FileNotFoundError)