Do not run set -e for all cases
All checks were successful
Run Python tests (through Pytest) / Test (push) Successful in 24s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s

This commit is contained in:
Jon Michael Aanes 2025-04-13 18:17:33 +02:00
parent 08b07b5dda
commit 230a4fd65d

View File

@ -34,11 +34,11 @@ logger = logging.getLogger(__name__)
def bash_cmd(*commands: str) -> str:
commands = ('set -e', *commands)
return 'bash -c "' + ';'.join(commands) + '"'
AIDER_TEST = bash_cmd(
'set -e',
'virtualenv venv',
'source venv/bin/activate',
'pip install -e .',