mirror of
https://github.com/SickGear/SickGear.git
synced 2025-03-02 19:05:02 +00:00
14 lines
441 B
Python
14 lines
441 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
from unittest import TextTestRunner, TestSuite
|
|
from subliminal import cache_region
|
|
from . import test_providers, test_subliminal
|
|
|
|
|
|
cache_region.configure('dogpile.cache.memory', expiration_time=60 * 30) # @UndefinedVariable
|
|
suite = TestSuite([test_providers.suite(), test_subliminal.suite()])
|
|
|
|
|
|
if __name__ == '__main__':
|
|
TextTestRunner().run(suite)
|