| #!/bin/bash |
| |
|
|
| |
| cd "$(dirname "$0")/.." || exit |
|
|
| |
| echo "========================================" |
| echo "Setting up environment..." |
| echo "========================================" |
| source venv/bin/activate || { echo "Failed to activate virtual environment. Make sure venv exists."; exit 1; } |
|
|
| |
| echo -e "\n========================================" |
| echo "Running comprehensive tool tests..." |
| echo "========================================" |
| python tests/test_all_tools.py |
|
|
| |
| echo -e "\n========================================" |
| echo "Running Bitcoin Data Tool tests..." |
| echo "========================================" |
| python tests/test_bitcoin.py |
|
|
| echo -e "\n========================================" |
| echo "Running Bitcoin News Tool tests..." |
| echo "========================================" |
| python tests/test_bitcoin_news.py |
|
|
| echo -e "\n========================================" |
| echo "Running Yahoo Finance Tools tests..." |
| echo "========================================" |
| python tests/test_yahoo_tools.py |
|
|
| echo -e "\n========================================" |
| echo "All tests completed!" |
| echo "========================================" |