Spaces:
Runtime error
Runtime error
| set -e | |
| echo "Running Ruff (Linting)..." | |
| ruff check src/ tests/ | |
| echo "Running Mypy (Type Checking)..." | |
| mypy src/ | |
| echo "Running Pytest (Unit & Integration)..." | |
| pytest | |
| echo "All tests passed!" | |