[foolslide] restructure; convert suitable values to int

This commit is contained in:
Mike Fährmann
2017-09-24 16:57:47 +02:00
parent deb2e803ba
commit a85f06d2d1
10 changed files with 59 additions and 43 deletions

View File

@@ -68,7 +68,6 @@ skip = [
# temporary issues
"luscious", # "high load"
"pawoo",
"seaotterscans", # "Name or service not known"
]
# enable selective testing for direct calls
if __name__ == '__main__' and len(sys.argv) > 1:
@@ -77,7 +76,8 @@ if __name__ == '__main__' and len(sys.argv) > 1:
else:
extractors = [
extr for extr in extractor.extractors()
if extr.category in sys.argv
if extr.category in sys.argv or
hasattr(extr, "basecategory") and extr.basecategory in sys.argv
]
del sys.argv[1:]
else: