agentic-market-research / scripts /run_all_tests.sh
pkgprateek's picture
fix: configure app host and dockerfile for HF deployment
8ac8a9d
raw
history blame contribute delete
206 Bytes
#!/bin/bash
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!"