standardize packaging, tooling, docs, CI, and licensing

This commit is contained in:
2026-09-10 18:49:08 +05:30
parent c541577788
commit 3bc45ff9fa
36 changed files with 308 additions and 115 deletions

View File

@@ -1,7 +1,6 @@
from datetime import datetime, timedelta
from mail_intake.models import MailIntakeMessage
from mail_intake.models import MailIntakeThread
from mail_intake.models import MailIntakeMessage, MailIntakeThread
def test_message_is_immutable():
@@ -19,7 +18,7 @@ def test_message_is_immutable():
try:
msg.subject = "Changed"
assert False, "Message should be immutable"
raise AssertionError("Message should be immutable")
except Exception:
assert True