Test path fix for finding schema file.
All checks were successful
build / test (push) Successful in 4m7s
build / docs (push) Successful in 58s

This commit is contained in:
Dan Helfman 2024-11-20 08:18:06 -08:00
commit 47a8a95b29

View file

@ -8,7 +8,7 @@ MAXIMUM_LINE_LENGTH = 80
def test_schema_line_length_stays_under_limit():
schema_file = open('borgmatic/config/schema.yaml')
schema_file = open(borgmatic.config.validate.schema_filename())
for line in schema_file.readlines():
assert len(line.rstrip('\n')) <= MAXIMUM_LINE_LENGTH