forked from mirror/django-mailbox
Disable specific test for Python 3.x.
This commit is contained in:
parent
c6ef5058e8
commit
6cb5105b70
1 changed files with 5 additions and 0 deletions
|
|
@ -61,6 +61,11 @@ class TestProcessEmail(EmailMessageTestCase):
|
||||||
)
|
)
|
||||||
|
|
||||||
def test_message_with_not_decoded_attachment_header(self):
|
def test_message_with_not_decoded_attachment_header(self):
|
||||||
|
if sys.version_info > (3, 0):
|
||||||
|
self.skipTest(
|
||||||
|
"This test is only relevant on Python 2.x."
|
||||||
|
)
|
||||||
|
|
||||||
email_object = self._get_email_object(
|
email_object = self._get_email_object(
|
||||||
'message_with_not_decoded_attachment_header.eml',
|
'message_with_not_decoded_attachment_header.eml',
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue