Comment on status

This commit is contained in:
Jon Michael Aanes 2025-05-11 10:49:38 +02:00
parent 3b99ebdea9
commit 835235f41b

View File

@ -134,9 +134,13 @@ def bash_cmd(*commands: str) -> str:
AIDER_TEST = bash_cmd(
'echo "Setting up virtual environment"'
'virtualenv venv',
'echo "Activating virtual environment"'
'source venv/bin/activate',
'echo "Installing package"'
'pip install -e .',
'echo "Testing package"'
'pytest test',
)