diff options
| author | Barry Warsaw | 2014-12-16 03:37:26 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2014-12-16 03:37:26 -0500 |
| commit | 930516396f8aba9266c03b09065fed9fa3df2a0b (patch) | |
| tree | ad442a7d981f9d946f1e0c90b5f677863f707434 /src/mailman/testing | |
| parent | 94247b82d1c030eac9be3eb4c461f830a99c2f63 (diff) | |
| download | mailman-930516396f8aba9266c03b09065fed9fa3df2a0b.tar.gz mailman-930516396f8aba9266c03b09065fed9fa3df2a0b.tar.zst mailman-930516396f8aba9266c03b09065fed9fa3df2a0b.zip | |
Make sure that TestConfigurationErrors doesn't break global state.
Diffstat (limited to 'src/mailman/testing')
| -rw-r--r-- | src/mailman/testing/nose.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mailman/testing/nose.py b/src/mailman/testing/nose.py index 8fe7017c0..8d175873c 100644 --- a/src/mailman/testing/nose.py +++ b/src/mailman/testing/nose.py @@ -116,3 +116,9 @@ class NosePlugin(Plugin): # Suppress the extra "Doctest: ..." line. test.shortDescription = lambda: None event.extraTests.append(test) + + ## def startTest(self, event): + ## import sys; print('vvvvv', event.test, file=sys.stderr) + + ## def stopTest(self, event): + ## import sys; print('^^^^^', event.test, file=sys.stderr) |
