Update to newest version of Reader, fix webhooks and fix tests

This commit is contained in:
2022-09-26 19:43:51 +02:00
parent 4dd9b2b6b3
commit b8a94b6009
4 changed files with 334 additions and 117 deletions

View File

@ -22,6 +22,9 @@ def test_backup():
# Where we store backups
backup_dir = os.path.join(app_dir, "backup")
# Make sure the backup directory exists
os.makedirs(backup_dir, exist_ok=True)
# Check how many files in the backup directory
files_before = len(os.listdir(backup_dir))