- Allow dependencies between tests (ie. test if the code compiles
first before running other tests).
+ - Send full reports to a website. Requires another queue and another
+ task to update the website.
+
Similar projects:
- The 0-day test service is a very comprehensive set of tests
if config.reply_override is not None:
to = [config.reply_override]
+ # If the content is over 50K then truncate it to the last 50K.
+ # XXX Upload full logs to a website.
+ if len(content) > 50000:
+ content = content[-50000:]
+
# Construct an email of type text/plain with the body of the
# message.
msg = MIMEText(content)