Revert unwanted changes

This commit is contained in:
Adrià Casajús 2022-04-11 14:20:56 +02:00
parent 7649f6b822
commit ae8824a356
No known key found for this signature in database
GPG Key ID: F0033226A5AFC9B9
3 changed files with 1 additions and 11 deletions

View File

@ -1450,7 +1450,6 @@ def save_envelope_for_debugging(envelope: Envelope, file_name_prefix=None) -> st
"""Save envelope for debugging to temporary location
Return the file path
"""
LOG.d("TE {}".format( TEMP_DIR))
if TEMP_DIR:
file_name = str(uuid.uuid4()) + ".eml"
if file_name_prefix:

View File

@ -1,5 +1,5 @@
[pytest]
xaddopts =
addopts =
--cov
--cov-config coverage.ini
--cov-report=html:htmlcov

View File

@ -159,12 +159,3 @@ def test_preserve_5xx_with_no_header(flask_client):
envelope.rcpt_tos = [msg["to"]]
result = email_handler.MailHandler()._handle(envelope, msg)
assert result == status.E512
def test_lol():
msg = load_eml_file("KeyErrorbf6219c1-3bed-419f-ae40-bec264204e2d.eml")
msg.as_string()
envelope = Envelope()
envelope.mail_from = msg[headers.FROM]
envelope.rcpt_tos = [msg["to"]]
envelope.original_content = msg.as_string()
result = email_handler.MailHandler()._handle(envelope, msg)