From d3d1c9e5aab530c0cf5869254a4830320dfd6e53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl=20Thom=C3=A9?= Date: Sun, 18 Jun 2023 15:08:25 +0200 Subject: [PATCH] Mark test as failed because it requires OpenAI API access currently --- tests/test_ai.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_ai.py b/tests/test_ai.py index 2241d3d..acc017e 100644 --- a/tests/test_ai.py +++ b/tests/test_ai.py @@ -1,6 +1,9 @@ +import pytest + from gpt_engineer.ai import AI +@pytest.mark.xfail(reason="Constructor assumes API access") def test_ai(): AI() # TODO Assert that methods behave and not only constructor.