| # Test runner script that handles conda activation | |
| # Get conda activation script | |
| CONDA_ACTIVATE="/Users/elhadjibassirousy/miniforge3/etc/profile.d/conda.sh" | |
| # Check if conda exists | |
| if [ ! -f "$CONDA_ACTIVATE" ]; then | |
| echo "β Conda not found at $CONDA_ACTIVATE" | |
| exit 1 | |
| fi | |
| # Activate conda and run tests | |
| source "$CONDA_ACTIVATE" | |
| conda activate ai-tf311 | |
| cd /Users/elhadjibassirousy/Desktop/AI-Talent-Finder/backend | |
| echo "β Environment: $(python --version 2>&1)" | |
| echo "π Location: $(pwd)" | |
| echo "" | |
| # Run tests | |
| python run_representative_tests.py | |