Show More
@@ -1,4 +1,4 | |||
|
1 | import unittest, sys | |
|
1 | import unittest, sys, os | |
|
2 | 2 | |
|
3 | 3 | def main(modulename): |
|
4 | 4 | '''run the tests found in module, printing nothing when all tests pass''' |
@@ -16,3 +16,6 def main(modulename): | |||
|
16 | 16 | |
|
17 | 17 | sys.stdout.write(exc) |
|
18 | 18 | sys.exit(1) |
|
19 | ||
|
20 | if os.environ.get('SILENT_BE_NOISY'): | |
|
21 | main = unittest.main |
General Comments 0
You need to be logged in to leave comments.
Login now