Ignore compressed statics.
[redakcja.git] / apps / sorl / thumbnail / tests / __init__.py
1 # For these tests to run successfully, two conditions must be met:
2 # 1. MEDIA_URL and MEDIA_ROOT must be set in settings
3 # 2. The user running the tests must have read/write access to MEDIA_ROOT
4
5 # Unit tests:
6 from sorl.thumbnail.tests.classes import ThumbnailTest, DjangoThumbnailTest
7 from sorl.thumbnail.tests.templatetags import ThumbnailTagTest
8 from sorl.thumbnail.tests.fields import FieldTest, \
9     ImageWithThumbnailsFieldTest, ThumbnailFieldTest
10 # Doc tests:
11 from sorl.thumbnail.tests.utils import utils_tests
12 from sorl.thumbnail.tests.templatetags import filesize_tests
13 __test__ = {
14     'utils_tests': utils_tests,
15     'filesize_tests': filesize_tests,
16 }