diff options
| author | Barry Warsaw | 2008-07-05 11:06:37 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2008-07-05 11:06:37 -0400 |
| commit | 08400a46afb740a0e49058707969462fa7e7dddf (patch) | |
| tree | 42d18be4b2bda21680e88d5a0b19495282d4aa19 /mailman/tests/test_documentation.py | |
| parent | dda21fc619518344dfc44081c64674f6374fe404 (diff) | |
| download | mailman-08400a46afb740a0e49058707969462fa7e7dddf.tar.gz mailman-08400a46afb740a0e49058707969462fa7e7dddf.tar.zst mailman-08400a46afb740a0e49058707969462fa7e7dddf.zip | |
Refactor the archivers so that they live in a separate sub-package. Split out
the Pipermail, Prototype, and MailArchiver plugins into separate modules.
Put the archives registry on the config object and initialize it at the right
time.
Update plugin entry points.
Diffstat (limited to 'mailman/tests/test_documentation.py')
| -rw-r--r-- | mailman/tests/test_documentation.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mailman/tests/test_documentation.py b/mailman/tests/test_documentation.py index e805b10fa..48c2c491c 100644 --- a/mailman/tests/test_documentation.py +++ b/mailman/tests/test_documentation.py @@ -79,6 +79,9 @@ def cleaning_teardown(testobj): for message in config.db.message_store.messages: config.db.message_store.delete_message(message['message-id']) config.db.commit() + # Reset all archivers by disabling them. + for archiver in config.archivers.values(): + archiver.is_enabled = False |
