From b5e2eee9a4e048c8135c23df9f22dbbf50ea25c1 Mon Sep 17 00:00:00 2001 From: Robert Jambrecic Date: Mon, 11 Nov 2024 13:18:55 +0000 Subject: [PATCH] Fix tests --- tests/docs_src/test_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/docs_src/test_import.py b/tests/docs_src/test_import.py index 6c1bcdcf..8361bb97 100644 --- a/tests/docs_src/test_import.py +++ b/tests/docs_src/test_import.py @@ -69,7 +69,7 @@ def test_submodules(module: str, monkeypatch: pytest.MonkeyPatch) -> None: or module in MESOP_EXCLUDED_MODULES ): pass - elif "mesop" in module: + elif "mesop" in module or "tutorials.giphy.simple_main" in module: with pytest.raises( FastAgencyCLIPythonVersionError, match="Mesop requires Python 3.10 or higher",