mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 01:15:05 +00:00
60 lines
2.3 KiB
Python
60 lines
2.3 KiB
Python
|
#!/usr/bin/env python
|
||
|
# coding=UTF-8
|
||
|
# Author: Dennis Lutter <lad1337@gmail.com>
|
||
|
#
|
||
|
# This file is part of SickGear.
|
||
|
#
|
||
|
# SickGear is free software: you can redistribute it and/or modify
|
||
|
# 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.
|
||
|
#
|
||
|
# SickGear is distributed in the hope that it will be useful,
|
||
|
# 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
|
||
|
# along with SickGear. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
if '__main__' == __name__:
|
||
|
import warnings
|
||
|
warnings.filterwarnings('ignore', module=r'.*fuz.*', message='.*Sequence.*')
|
||
|
|
||
|
import glob
|
||
|
import sys
|
||
|
import unittest
|
||
|
import os
|
||
|
|
||
|
sys.path.insert(1, os.path.abspath(os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))),
|
||
|
'lib')))
|
||
|
test_file_strings = [x for x in glob.glob('*_tests.py') if x not in __file__]
|
||
|
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)
|
||
|
|
||
|
print('====================')
|
||
|
print('STARTING - ALL TESTS')
|
||
|
print('====================')
|
||
|
|
||
|
test_individually = False
|
||
|
|
||
|
if not test_individually:
|
||
|
print('this will include')
|
||
|
for includedfiles in test_file_strings:
|
||
|
print('- ' + includedfiles)
|
||
|
|
||
|
text_runner = unittest.TextTestRunner().run(testSuite)
|
||
|
if not text_runner.wasSuccessful():
|
||
|
sys.exit(-1)
|
||
|
else:
|
||
|
complete_success = True
|
||
|
for file_string in module_strings:
|
||
|
testSuite = unittest.TestSuite([unittest.defaultTestLoader.loadTestsFromName(file_string)])
|
||
|
print('- running ' + file_string)
|
||
|
test_runner = unittest.TextTestRunner().run(testSuite)
|
||
|
if complete_success and not test_runner.wasSuccessful():
|
||
|
complete_success = False
|
||
|
if not complete_success:
|
||
|
sys.exit(-1)
|