From e985f7c1053605252e374df6abd0d83a0d15f8ec Mon Sep 17 00:00:00 2001 From: Reinier van der Leer Date: Wed, 20 Mar 2024 12:46:30 +0100 Subject: test(agent): Add skip statements to test_execute_code.py for when Docker is not available --- autogpts/autogpt/tests/integration/test_execute_code.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/autogpts/autogpt/tests/integration/test_execute_code.py b/autogpts/autogpt/tests/integration/test_execute_code.py index 1c980e025..b8667b475 100644 --- a/autogpts/autogpt/tests/integration/test_execute_code.py +++ b/autogpts/autogpt/tests/integration/test_execute_code.py @@ -44,6 +44,9 @@ def random_string(): def test_execute_python_file(python_test_file: Path, random_string: str, agent: Agent): + if not (sut.is_docker_available() or sut.we_are_running_in_a_docker_container()): + pytest.skip("Docker is not available") + result: str = sut.execute_python_file(python_test_file, agent=agent) assert result.replace("\r", "") == f"Hello {random_string}!\n" @@ -51,6 +54,9 @@ def test_execute_python_file(python_test_file: Path, random_string: str, agent: def test_execute_python_file_args( python_test_args_file: Path, random_string: str, agent: Agent ): + if not (sut.is_docker_available() or sut.we_are_running_in_a_docker_container()): + pytest.skip("Docker is not available") + random_args = [random_string] * 2 random_args_string = " ".join(random_args) result = sut.execute_python_file( @@ -60,6 +66,9 @@ def test_execute_python_file_args( def test_execute_python_code(random_code: str, random_string: str, agent: Agent): + if not (sut.is_docker_available() or sut.we_are_running_in_a_docker_container()): + pytest.skip("Docker is not available") + result: str = sut.execute_python_code(random_code, agent=agent) assert result.replace("\r", "") == f"Hello {random_string}!\n" -- cgit v1.2.3