Private GIT

Skip to content
Snippets Groups Projects
Commit 4aac134c authored by Dustyn Gibson's avatar Dustyn Gibson
Browse files

Fix build status, feedparser uses lol.sickbeard.com and they no longer even...

Fix build status, feedparser uses lol.sickbeard.com and they no longer even have a feedparser test, and have changed the api.
parent d1342498
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,9 @@ sys.path.insert(1, os.path.abspath(os.path.join(os.path.dirname(__file__), '../l
sys.path.insert(1, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
class AllTests(unittest.TestCase):
blacklist = [tests_dir + 'all_tests.py',tests_dir + 'issue_submitter_tests.py']
#Block issue_submitter_tests to avoid issue tracker spam on every build
#Block feedparser_tests because http://lolo.sickbeard.com/ has changed api, which makes the test fail
blacklist = [tests_dir + 'all_tests.py',tests_dir + 'issue_submitter_tests.py', tests_dir + 'feedparser_tests.py']
def setUp(self):
self.test_file_strings = [ x for x in glob.glob(tests_dir + '*_tests.py') if not x in self.blacklist ]
self.module_strings = [file_string[len(tests_dir):len(file_string) - 3] for file_string in self.test_file_strings]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment