mirror of
https://github.com/omnara-ai/omnara.git
synced 2025-08-12 20:39:09 +03:00
15 lines
270 B
Bash
Executable File
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!" |