mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-10 20:28:28 +03:00
10 lines
229 B
Python
10 lines
229 B
Python
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() |