test(agent): Add skip statements to test_execute_code.py for when Docker is not available

This commit is contained in:
Reinier van der Leer
2024-03-20 12:46:30 +01:00
parent 596487b9ad
commit e985f7c105

View File

@@ -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"