From 47dc5ad2207b2c41c0f963ecac61fc4f3a16b275 Mon Sep 17 00:00:00 2001 From: Reinier van der Leer Date: Tue, 5 Dec 2023 15:34:39 +0100 Subject: [PATCH] fix(test): Fix test that was being skipped because of missing async marker - Fix a test case in test_web_selenium.py that was failing due to a missing `pytest.mark.asyncio` --- autogpts/autogpt/tests/integration/test_web_selenium.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/autogpts/autogpt/tests/integration/test_web_selenium.py b/autogpts/autogpt/tests/integration/test_web_selenium.py index dfdbb9e0f..5a014efe1 100644 --- a/autogpts/autogpt/tests/integration/test_web_selenium.py +++ b/autogpts/autogpt/tests/integration/test_web_selenium.py @@ -6,13 +6,14 @@ from autogpt.commands.web_selenium import BrowsingError, read_webpage @pytest.mark.vcr @pytest.mark.requires_openai_api_key +@pytest.mark.asyncio async def test_browse_website_nonexistent_url( agent: Agent, patched_api_requestor: None ): url = "https://auto-gpt-thinks-this-website-does-not-exist.com" question = "How to execute a barrel roll" - with pytest.raises(BrowsingError, match=r"NAME_NOT_RESOLVED") as raised: + with pytest.raises(BrowsingError, match="NAME_NOT_RESOLVED") as raised: await read_webpage(url=url, question=question, agent=agent) # Sanity check that the response is not too long