File size: 206 Bytes
8ac8a9d
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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!"