1
0
Fork 0

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
from unittest import SkipTest
from unittest2 import SkipTest
import uuid
from six.moves.urllib import parse

View file

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