Fix some comics and increase travis test number.
This commit is contained in:
parent
41c954b309
commit
09df20cd1f
4 changed files with 4 additions and 4 deletions
|
@ -194,7 +194,6 @@ add('Dromo', '/dro-mo')
|
|||
add('DudeandDude', '/dudedude')
|
||||
add('DumbQuestionBadAnswer', '/dumb-question-bad-answer')
|
||||
add('DustSpecks', '/dust-specks')
|
||||
add('DutchnPals', '/dutch-n-pals')
|
||||
add('EGGMEN', '/eggmen')
|
||||
add('EclecticCartoons', '/eclectic-cartoons')
|
||||
add('Eddie', '/eddie')
|
||||
|
@ -484,7 +483,6 @@ add('SigneWilkinson', '/signewilkinson')
|
|||
add('SkinHorse', '/skinhorse')
|
||||
add('Skippy', '/skippy')
|
||||
add('Skylarking', '/skylarking')
|
||||
add('Slowpoke', '/slowpoke')
|
||||
add('SmallWorld', '/smallworld')
|
||||
add('Smith', '/smith')
|
||||
add('SnowSez', '/snowsez')
|
||||
|
|
|
@ -29,6 +29,7 @@ exclude_comics = [
|
|||
"DALTONDOG", # comic unavailable
|
||||
"DellAndSteve", # too few comics
|
||||
"Dilbert", # redirect
|
||||
"DutchnPals", # too few comics
|
||||
"InkeeDoodles", # comic unavailable
|
||||
"MaggiesComics", # too few comics
|
||||
"OfMiceandMud", # too few comics
|
||||
|
@ -37,6 +38,7 @@ exclude_comics = [
|
|||
"PS", # comic unavailable
|
||||
"RichardsPoorAlmanac", # missing images
|
||||
"SherpaAid", # comic unavailable
|
||||
"Slowpoke", # comic moved
|
||||
"SparComics", # comic unavailable
|
||||
"SurvivingSingle", # comic unavailable
|
||||
"WhatTheFrak", # too few comics
|
||||
|
|
|
@ -93,7 +93,7 @@ def generate_comic_testers():
|
|||
g = globals()
|
||||
if "TRAVIS" in os.environ:
|
||||
# Get limited number of scraper tests on Travis builds.
|
||||
max_scrapers = 500
|
||||
max_scrapers = 1000
|
||||
scraperclasses = islice(scraper.get_scraperclasses(), 0, max_scrapers)
|
||||
else:
|
||||
scraperclasses = scraper.get_scraperclasses()
|
||||
|
|
|
@ -20,7 +20,7 @@ class URLTest(TestCase):
|
|||
def test_normalisation(self):
|
||||
# Test URL normalisation.
|
||||
self.assertEqual(normaliseURL('http://example.com//bar/baz&baz'),
|
||||
u'http://example.com/bar/baz%26baz')
|
||||
u'http://example.com/bar/baz&baz')
|
||||
|
||||
|
||||
class RegexTest(TestCase):
|
||||
|
|
Loading…
Reference in a new issue