Add unit tests for html_formatter, csv_db

This commit is contained in:
Patrick Robertson
2025-01-13 17:58:10 +01:00
parent 2353f9d6a5
commit bbef80de4c
9 changed files with 112 additions and 13 deletions

View File

@@ -1,4 +1,10 @@
import unittest
import tempfile
from auto_archiver.core.context import ArchivingContext
ArchivingContext.reset(full_reset=True)
ArchivingContext.set_tmp_dir(tempfile.gettempdir())
if __name__ == '__main__':
unittest.main()