From 6d20de8b2a228beb2b560a35c70da2ad1dc6f3d3 Mon Sep 17 00:00:00 2001 From: Tobias Gruetzmacher Date: Sat, 26 Aug 2023 18:23:43 +0200 Subject: [PATCH] Allow ignoring modules in tests forever --- tests/modules/conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/modules/conftest.py b/tests/modules/conftest.py index a1b4d2d8a..0b8a9ba21 100644 --- a/tests/modules/conftest.py +++ b/tests/modules/conftest.py @@ -16,7 +16,8 @@ def get_test_scrapers(): """Return scrapers that should be tested.""" if 'TESTALL' in os.environ: # test all comics (this will take some time) - return scrapers.all() + # Ignore known-broken (and never-to-be-fixed) modules + scraper_pattern = '^(?!Schuelert)' elif 'TESTCOMICS' in os.environ: scraper_pattern = os.environ['TESTCOMICS'] else: