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

This commit is contained in:
Joakim Hellsén 2022-09-26 19:43:51 +02:00
commit b8a94b6009
No known key found for this signature in database
GPG key ID: 01FD861E3DAC09AC
4 changed files with 330 additions and 113 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))