Disable Mediawiki Tests (#3005)

This commit is contained in:
Yuhong Sun 2024-10-30 17:27:58 -07:00 committed by GitHub
parent f318e302c5
commit 1a7d627949
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,6 +7,10 @@ from pywikibot.family import Family # type: ignore[import-untyped]
from danswer.connectors.mediawiki import family
# Disabling these tests as they are flaky and rely on external wikis that are maintained by just fan communities
NON_BUILTIN_WIKIS: Final[list[tuple[str, str]]] = [
("https://fallout.fandom.com", "falloutwiki"),
("https://harrypotter.fandom.com/wiki/", "harrypotterwiki"),
@ -19,6 +23,7 @@ NON_BUILTIN_WIKIS: Final[list[tuple[str, str]]] = [
# TODO: Add support for more builtin family types from `pywikibot.families`.
@pytest.mark.skip(reason="Temporarily skipped")
@pytest.mark.parametrize(
"url, name, expected",
[
@ -48,6 +53,7 @@ def test_family_class_dispatch_builtins(
assert family.family_class_dispatch(url, name) == expected
@pytest.mark.skip(reason="Temporarily skipped")
@pytest.mark.parametrize("url, name", NON_BUILTIN_WIKIS)
def test_family_class_dispatch_on_non_builtins_generates_new_class_fast(
url: str, name: str, mocker: MockFixture
@ -58,6 +64,7 @@ def test_family_class_dispatch_on_non_builtins_generates_new_class_fast(
mock_generate_family_class.assert_called_once_with(url, name)
@pytest.mark.skip(reason="Temporarily skipped")
@pytest.mark.slow
@pytest.mark.parametrize("url, name", NON_BUILTIN_WIKIS)
def test_family_class_dispatch_on_non_builtins_generates_new_class_slow(