| | #!/bin/bash |
| |
|
| | |
| | |
| | |
| |
|
| | echo "=========================================" |
| | echo "🔬 Running Cognitive Seismograph Test Suite" |
| | echo "=========================================" |
| |
|
| | |
| | export CMP_DEBUG=1 |
| |
|
| | |
| | |
| | |
| |
|
| | |
| | ../venv-gemma-qualia/bin/python -m pytest -v --color=yes tests/ |
| |
|
| | |
| | if [ $? -eq 0 ]; then |
| | echo "=========================================" |
| | echo "✅ All tests passed successfully!" |
| | echo "=========================================" |
| | else |
| | echo "=========================================" |
| | echo "❌ Some tests failed. Please review the output." |
| | echo "=========================================" |
| | fi |
| |
|