mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-04-03 01:18:20 +02:00
Disable Mediawiki Tests (#3005)
This commit is contained in:
parent
f318e302c5
commit
1a7d627949
@ -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(
|
||||
|
Loading…
x
Reference in New Issue
Block a user