aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_results.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2021-03-13 16:26:30 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2021-03-13 16:26:30 -0500
commit3201d77a148367d739862b4f07868a76eaeb7cb1 (patch)
tree78b8d71633ec000672a84ad0bbbddd0513ae2d30 /test/test_results.py
parentfc83315c164afd74734adf27e0f7fec2011904aa (diff)
New upstream version 1.17.0.upstream/1.17.0
Diffstat (limited to 'test/test_results.py')
-rw-r--r--test/test_results.py12
1 files changed, 1 insertions, 11 deletions
diff --git a/test/test_results.py b/test/test_results.py
index f7356d5..223ef57 100644
--- a/test/test_results.py
+++ b/test/test_results.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
-# Copyright 2015-2020 Mike Fährmann
+# Copyright 2015-2021 Mike Fährmann
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
@@ -20,14 +20,6 @@ sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from gallery_dl import extractor, util, job, config, exception # noqa E402
-# these don't work on Travis CI
-TRAVIS_SKIP = {
- "exhentai", "mangafox", "dynastyscans", "nijie", "instagram", "ngomik",
- "archivedmoe", "archiveofsins", "thebarchive", "fireden", "4plebs",
- "sankaku", "idolcomplex", "mangahere", "mangadex", "sankakucomplex",
- "warosu", "fuskator", "patreon", "komikcast", "twitter",
-}
-
# temporary issues, etc.
BROKEN = {
"imagevenue",
@@ -361,8 +353,6 @@ def generate_tests():
del sys.argv[1:]
else:
skip = set(BROKEN)
- if "CI" in os.environ and "TRAVIS" in os.environ:
- skip |= set(TRAVIS_SKIP)
if skip:
print("skipping:", ", ".join(skip))
fltr = lambda c, bc: c not in skip # noqa: E731