summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2001-10-12 05:18:15 +0000
committerbwarsaw2001-10-12 05:18:15 +0000
commitf03fcb2ffb92e823a71435e4e046b93c4a9528d9 (patch)
tree096c4872076cf975cb954c2c0df4e5ec3884acb9
parente4927c166f37dee7a01027e6ffe5c6bbe1b5294d (diff)
downloadmailman-f03fcb2ffb92e823a71435e4e046b93c4a9528d9.tar.gz
mailman-f03fcb2ffb92e823a71435e4e046b93c4a9528d9.tar.zst
mailman-f03fcb2ffb92e823a71435e4e046b93c4a9528d9.zip
MODULES: Add test_runners.py, but remove test_message.py. This one
can't be run automatically because it requires that the qrunner/mailmanctl be started. But we can't run the other tests if mailmanctl is running because it'll attempt to deliver stuff out of the queues and the other tests deliberately check various files in the queue.
-rw-r--r--tests/testall.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/testall.py b/tests/testall.py
index aa4c807e4..46ce9bbe7 100644
--- a/tests/testall.py
+++ b/tests/testall.py
@@ -18,9 +18,13 @@
import unittest
-MODULES = ('bounces', 'handlers', 'membership', 'message', 'safedict',
- 'security_mgr')
+MODULES = ('bounces', 'handlers', 'membership', 'safedict',
+ 'security_mgr', 'runners',
+ )
+# test_message.py can only be run when mailmanctl is running, but mailmanctl
+# can't be run when the other tests are run, 'cause it'll clobber qfiles.
+# This means you have to run test_message.py manually. :(
def suite():