run_tests.sh 202 B

12345678
  1. #!/bin/bash
  2. # Shell script to run tests with CI/CD configuration
  3. # Make sure we're in the project root
  4. cd "$(dirname "$0")/.." || exit 1
  5. # Run the Python test runner
  6. python3 scripts/run_tests.py "$@"