diff options
| -rw-r--r-- | tests/testall.py | 8 |
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(): |
