Files
omnara-agent-monitor/scripts/run_all_tests.sh
Kartik Sarangmath 912b8e0472 reduces deps
2025-07-09 14:03:38 -07:00

15 lines
270 B
Bash
Executable File

#!/bin/bash
# Run all Python tests
set -e
echo "🧪 Running Python Tests"
echo "======================"
# Change to root directory
cd "$(dirname "$0")/.."
# Run pytest - configuration is in pytest.ini and pyproject.toml
pytest "$@"
echo -e "\n✅ Tests completed!"