2014-03-10 05:18:05 +00:00
|
|
|
#!/usr/bin/env python2
|
|
|
|
# coding=UTF-8
|
|
|
|
# Author: Dennis Lutter <lad1337@gmail.com>
|
|
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
|
|
#
|
2014-11-12 16:43:14 +00:00
|
|
|
# This file is part of SickGear.
|
2014-03-10 05:18:05 +00:00
|
|
|
#
|
2014-11-12 16:43:14 +00:00
|
|
|
# SickGear is free software: you can redistribute it and/or modify
|
2014-03-10 05:18:05 +00:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
2014-11-12 16:43:14 +00:00
|
|
|
# SickGear is distributed in the hope that it will be useful,
|
2014-03-10 05:18:05 +00:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2014-11-12 16:43:14 +00:00
|
|
|
# along with SickGear. If not, see <http://www.gnu.org/licenses/>.
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-06-09 11:13:00 +00:00
|
|
|
from __future__ import print_function
|
2015-08-11 11:51:26 +00:00
|
|
|
if __name__ == '__main__':
|
2014-03-10 05:18:05 +00:00
|
|
|
import glob
|
|
|
|
import unittest
|
2014-09-13 03:51:03 +00:00
|
|
|
import sys
|
2014-03-10 05:18:05 +00:00
|
|
|
|
2015-09-18 00:06:34 +00:00
|
|
|
test_file_strings = [x for x in glob.glob('*_tests.py') if x not in __file__]
|
2014-03-10 05:18:05 +00:00
|
|
|
module_strings = [file_string[0:len(file_string) - 3] for file_string in test_file_strings]
|
|
|
|
suites = [unittest.defaultTestLoader.loadTestsFromName(file_string) for file_string in module_strings]
|
|
|
|
testSuite = unittest.TestSuite(suites)
|
|
|
|
|
2015-06-09 11:13:00 +00:00
|
|
|
print('==================')
|
|
|
|
print('STARTING - ALL TESTS')
|
|
|
|
print('==================')
|
|
|
|
print('this will include')
|
2014-03-10 05:18:05 +00:00
|
|
|
for includedfiles in test_file_strings:
|
2015-06-09 11:13:00 +00:00
|
|
|
print('- ' + includedfiles)
|
2014-03-10 05:18:05 +00:00
|
|
|
|
|
|
|
text_runner = unittest.TextTestRunner().run(testSuite)
|
2014-09-13 03:51:03 +00:00
|
|
|
if not text_runner.wasSuccessful():
|
|
|
|
sys.exit(-1)
|