mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-07 15:18:29 +00:00
* feat: Start migrating to UV * feat: add uv to flows * feat: update docs on Poetry -> uv * feat: update docs and uv.locl * feat: update tests and github CI * feat: run ruff format * feat: update typechecking * feat: fix type checking * feat: update python version * feat: type checking gic * feat: adapt uv command to run the tool repo * Adapt tool build command to uv * feat: update logic to let only projects with crew to be deployed * feat: add uv to tools * fix; tests * fix: remove breakpoint * fix :test * feat: add crewai update to migrate from poetry to uv * fix: tests * feat: add validation for ˆ character on pyproject * feat: add run_crew to pyproject if doesnt exist * feat: add validation for poetry migration * fix: warning --------- Co-authored-by: Vinicius Brasil <vini@hey.com>
90 lines
2.8 KiB
Python
90 lines
2.8 KiB
Python
import subprocess
|
|
from unittest import mock
|
|
|
|
from crewai.cli.train_crew import train_crew
|
|
|
|
|
|
@mock.patch("crewai.cli.train_crew.subprocess.run")
|
|
def test_train_crew_positive_iterations(mock_subprocess_run):
|
|
n_iterations = 5
|
|
mock_subprocess_run.return_value = subprocess.CompletedProcess(
|
|
args=["uv", "run", "train", str(n_iterations)],
|
|
returncode=0,
|
|
stdout="Success",
|
|
stderr="",
|
|
)
|
|
|
|
train_crew(n_iterations, "trained_agents_data.pkl")
|
|
|
|
mock_subprocess_run.assert_called_once_with(
|
|
["uv", "run", "train", str(n_iterations), "trained_agents_data.pkl"],
|
|
capture_output=False,
|
|
text=True,
|
|
check=True,
|
|
)
|
|
|
|
|
|
@mock.patch("crewai.cli.train_crew.click")
|
|
def test_train_crew_zero_iterations(click):
|
|
train_crew(0, "trained_agents_data.pkl")
|
|
click.echo.assert_called_once_with(
|
|
"An unexpected error occurred: The number of iterations must be a positive integer.",
|
|
err=True,
|
|
)
|
|
|
|
|
|
@mock.patch("crewai.cli.train_crew.click")
|
|
def test_train_crew_negative_iterations(click):
|
|
train_crew(-2, "trained_agents_data.pkl")
|
|
click.echo.assert_called_once_with(
|
|
"An unexpected error occurred: The number of iterations must be a positive integer.",
|
|
err=True,
|
|
)
|
|
|
|
|
|
@mock.patch("crewai.cli.train_crew.click")
|
|
@mock.patch("crewai.cli.train_crew.subprocess.run")
|
|
def test_train_crew_called_process_error(mock_subprocess_run, click):
|
|
n_iterations = 5
|
|
mock_subprocess_run.side_effect = subprocess.CalledProcessError(
|
|
returncode=1,
|
|
cmd=["uv", "run", "train", str(n_iterations)],
|
|
output="Error",
|
|
stderr="Some error occurred",
|
|
)
|
|
train_crew(n_iterations, "trained_agents_data.pkl")
|
|
|
|
mock_subprocess_run.assert_called_once_with(
|
|
["uv", "run", "train", str(n_iterations), "trained_agents_data.pkl"],
|
|
capture_output=False,
|
|
text=True,
|
|
check=True,
|
|
)
|
|
click.echo.assert_has_calls(
|
|
[
|
|
mock.call.echo(
|
|
"An error occurred while training the crew: Command '['uv', 'run', 'train', '5']' returned non-zero exit status 1.",
|
|
err=True,
|
|
),
|
|
mock.call.echo("Error", err=True),
|
|
]
|
|
)
|
|
|
|
|
|
@mock.patch("crewai.cli.train_crew.click")
|
|
@mock.patch("crewai.cli.train_crew.subprocess.run")
|
|
def test_train_crew_unexpected_exception(mock_subprocess_run, click):
|
|
n_iterations = 5
|
|
mock_subprocess_run.side_effect = Exception("Unexpected error")
|
|
train_crew(n_iterations, "trained_agents_data.pkl")
|
|
|
|
mock_subprocess_run.assert_called_once_with(
|
|
["uv", "run", "train", str(n_iterations), "trained_agents_data.pkl"],
|
|
capture_output=False,
|
|
text=True,
|
|
check=True,
|
|
)
|
|
click.echo.assert_called_once_with(
|
|
"An unexpected error occurred: Unexpected error", err=True
|
|
)
|