1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00

Adding unittest2 to requirements so we can skip tests on Python 2.6.

This commit is contained in:
Adam Coddington 2015-07-21 22:38:50 -07:00
parent 3cc035f58b
commit 51f0cf44bf
2 changed files with 2 additions and 1 deletions

View file

@ -1,5 +1,5 @@
import os import os
from unittest import SkipTest from unittest2 import SkipTest
import uuid import uuid
from six.moves.urllib import parse from six.moves.urllib import parse

View file

@ -5,6 +5,7 @@ from django_mailbox import __version__ as version_string
tests_require = [ tests_require = [
'django', 'django',
'mock', 'mock',
'unittest2',
] ]
gmail_oauth2_require = [ gmail_oauth2_require = [